Skip to content

Commit 64aacca

Browse files
authored
chore(config): disable config error log rate limit (#24091)
1 parent e43d490 commit 64aacca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ pub enum WatchConfigMethod {
410410

411411
pub fn handle_config_errors(errors: Vec<String>) -> exitcode::ExitCode {
412412
for error in errors {
413-
error!(message = "Configuration error.", %error);
413+
error!(message = "Configuration error.", %error, internal_log_rate_limit = false);
414414
}
415415

416416
exitcode::CONFIG

src/topology/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ impl<'a> TopologyPiecesBuilder<'a> {
825825
match self.build().await {
826826
Err(errors) => {
827827
for error in errors {
828-
error!(message = "Configuration error.", %error);
828+
error!(message = "Configuration error.", %error, internal_log_rate_limit = false);
829829
}
830830
None
831831
}

0 commit comments

Comments
 (0)