mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
ENT-11094: Do nothing for paused flows. Matches 4.11.
This commit is contained in:
parent
863cc9bf3d
commit
8aba2ba35f
@ -1061,7 +1061,7 @@ internal class SingleThreadedStateMachineManager(
|
||||
Fiber.unparkDeserialized(flow.fiber, scheduler)
|
||||
}
|
||||
is FlowState.Finished -> throw IllegalStateException("Cannot start (or resume) a finished flow.")
|
||||
is FlowState.Paused -> { /* TODO JDK17: Fixme */ }
|
||||
is FlowState.Paused -> { /* Do Nothing. */ }
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user