Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/sdk-core/src/worker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ impl Worker {
// Wait for all permits to be released, but don't totally hang real-world shutdown.
tokio::select! {
_ = async { self.all_permits_tracker.lock().await.all_done().await } => {},
_ = tokio::time::sleep(Duration::from_secs(1)) => {
_ = tokio::time::sleep(Duration::from_secs(5)) => {
dbg_panic!("Waiting for all slot permits to release took too long!");
}
}
Expand Down
Loading