Skip to content

Commit

Permalink
Prevent error here.
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Oct 31, 2024
1 parent 06103d4 commit 643ce29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/clock.ml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ let _sync ?(pending = false) x =
| `Started { sync } -> (sync :> sync_mode)

let sync c = _sync (Unifier.deref c)
let cleanup_source s = s#force_sleep
let cleanup_source s = try s#force_sleep with _ -> ()
let clocks = Queue.create ()

let rec _cleanup ~clock { outputs; passive_sources; active_sources } =
Expand Down

0 comments on commit 643ce29

Please sign in to comment.