Skip to content

Commit e51f49f

Browse files
committed
chore: remove this
Signed-off-by: Fredi Raspall <[email protected]>
1 parent 39d5db0 commit e51f49f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

mgmt/src/processor/proc.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,10 +573,11 @@ fn apply_dst_vpcd_lookup_config(
573573
Ok(())
574574
}
575575

576-
fn apply_tracing_config(tracing: &Option<TracingConfig>) -> ConfigResult {
576+
fn apply_tracing_config(_tracing: &Option<TracingConfig>) -> ConfigResult {
577577
// Apply tracing config if provided. Otherwise, apply an empty/default config.
578578
let default = TracingConfig::default();
579-
let tracing = tracing.as_ref().unwrap_or(&default);
579+
//let tracing = tracing.as_ref().unwrap_or(&default);
580+
let tracing = &default;
580581
get_trace_ctl().reconfigure(
581582
Some(tracing.default),
582583
tracing

0 commit comments

Comments
 (0)