Skip to content

Commit

Permalink
dekaf: Use tokio multi-threaded runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
jshearer committed Oct 4, 2024
1 parent b367c9d commit 9d3b649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/dekaf/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ struct TlsArgs {
certificate_key_file: Option<PathBuf>,
}

#[tokio::main]
#[tokio::main(flavor = "multi_thread", worker_threads = 10)]
async fn main() -> anyhow::Result<()> {
let env_filter = EnvFilter::builder()
.with_default_directive(LevelFilter::WARN.into()) // Otherwise it's ERROR.
Expand Down

0 comments on commit 9d3b649

Please sign in to comment.