diff --git a/crates/countersyncd/benches/end_to_end.rs b/crates/countersyncd/benches/end_to_end.rs index 8ab82d44..b3cede63 100644 --- a/crates/countersyncd/benches/end_to_end.rs +++ b/crates/countersyncd/benches/end_to_end.rs @@ -142,7 +142,6 @@ async fn run_end_to_end(prepared: PreparedDataset, endpoint: String, exports_cou let counter_handle = tokio::spawn(async move { counter_actor.run().await }); let otel_cfg = OtelActorConfig { - print_to_console: false, collector_endpoint: endpoint.clone(), max_counters_per_export: 10_000, flush_timeout: Duration::from_secs(1), diff --git a/crates/countersyncd/benches/otel_actor_perf.rs b/crates/countersyncd/benches/otel_actor_perf.rs index 29ce285b..e6333c55 100644 --- a/crates/countersyncd/benches/otel_actor_perf.rs +++ b/crates/countersyncd/benches/otel_actor_perf.rs @@ -86,7 +86,6 @@ async fn run_stream(prepared: PreparedDataset, endpoint: String) -> (std::time:: let (shutdown_tx, _shutdown_rx) = oneshot::channel(); let cfg = OtelActorConfig { - print_to_console: false, collector_endpoint: endpoint, max_counters_per_export: 10_000, flush_timeout: Duration::from_secs(1),