aboutsummaryrefslogtreecommitdiffstats
path: root/crates/router/src/processor
diff options
context:
space:
mode:
Diffstat (limited to 'crates/router/src/processor')
-rw-r--r--crates/router/src/processor/reload.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/router/src/processor/reload.rs b/crates/router/src/processor/reload.rs
index e15ca07..0390c45 100644
--- a/crates/router/src/processor/reload.rs
+++ b/crates/router/src/processor/reload.rs
@@ -43,7 +43,7 @@ pub async fn reload(state: AppHandle) -> anyhow::Result<()> {
local_cache.invalidate_all();
let _ = message.ack().await.inspect_err(|e| error!("{e}"));
}
- ConfigKind::Rule => {
+ _ => {
trace!(kind = ?kind, "detected reload event, nothing to do here, acknowledging");
let _ = message.ack().await.inspect_err(|e| error!("{e}"));
}