mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
Merge pull request #7753 from corda/adel/ENT-11094
ENT-11094: Do nothing for paused flows. Matches 4.11.
This commit is contained in:
commit
5be80254e8
@ -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