Skip to content

Commit

Permalink
Fix panic #9747 introduced in #9722
Browse files Browse the repository at this point in the history
  • Loading branch information
vxgmichel committed Feb 18, 2025
1 parent 0d7823f commit 8e45ae0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ fn task_future_factory(
// Make sure we do not block the stopping of the monitor here
select2_biased!(
_ = event_bus.wait_server_reconnect() => {},
_ = &mut syncer_stop_requested => {},
// `synce_stop_requested` doesn't need to be fused (i.e. won't be

Check warning on line 101 in libparsec/crates/client/src/monitors/workspace_outbound_sync.rs

View workflow job for this annotation

GitHub Actions / spelling / cspell

Unknown word (synce)
// polled once completed) given we return right away here.
_ = &mut syncer_stop_requested => return,
)
}
// We have lost read access to the workspace, the certificates
Expand Down

0 comments on commit 8e45ae0

Please sign in to comment.