We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb93e11 commit 6711354Copy full SHA for 6711354
openhcl/underhill_core/src/dispatch/mod.rs
@@ -563,10 +563,10 @@ impl LoadedVm {
563
// Tell the initial process to flush all logs. Any logs
564
// emitted after this point may be lost.
565
state.init_state.flush_logs_result = Some({
566
- // Only wait up to a second (which is still
+ // Only wait up to a half second (which is still
567
// a long time!) to prevent delays from
568
// introducing longer blackouts.
569
- let ctx = CancelContext::new().with_timeout(Duration::from_secs(1));
+ let ctx = CancelContext::new().with_timeout(Duration::from_millis(500));
570
571
let now = std::time::Instant::now();
572
let call = self
0 commit comments