Skip to content

Commit

Permalink
fix: chart value "composer.logLength" doesn't affect.
Browse files Browse the repository at this point in the history
Signed-off-by: oniku2929 <o29n1ku2ku@gmail.com>
  • Loading branch information
oniku2929 committed Mar 18, 2023
1 parent c68c63d commit 90b4971
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 90b4971

Please sign in to comment.