Skip to content

Commit

Permalink
Merge pull request #139 from oniku-2929/fix/logLength
Browse files Browse the repository at this point in the history
Chart value "composer.logLength" doesn't affect.
  • Loading branch information
No9 authored Mar 18, 2023
2 parents c68c63d + 90b4971 commit aeb7f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-dump-agent/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ fn create_env_file(host_location: &str) -> Result<(), std::io::Error> {
let filename_template = env::var("COMP_FILENAME_TEMPLATE").unwrap_or_else(|_| {
"{uuid}-dump-{timestamp}-{hostname}-{exe_name}-{pid}-{signal}".to_string()
});
let log_length = env::var("LOG_LENGTH").unwrap_or_else(|_| "500".to_string());
let log_length = env::var("COMP_LOG_LENGTH").unwrap_or_else(|_| "500".to_string());
let pod_selector_label = env::var("COMP_POD_SELECTOR_LABEL").unwrap_or_default();
let timeout = env::var("COMP_TIMEOUT").unwrap_or_else(|_| "600".to_string());

Expand Down

0 comments on commit aeb7f40

Please sign in to comment.