mirror of
https://github.com/corda/corda.git
synced 2025-04-06 10:57:18 +00:00
Moving SubscribingRawUpdatesFlow from ErrorHandling to VaultObserverExceptionTest
This commit is contained in:
parent
7e370c136b
commit
4acdcbd964
@ -749,10 +749,10 @@ class VaultObserverExceptionTest {
|
||||
) {
|
||||
val aliceNode = startNode(providedName = ALICE_NAME, rpcUsers = listOf(user)).getOrThrow()
|
||||
|
||||
val flowHandle = aliceNode.rpc.startFlow(ErrorHandling::SubscribingRawUpdatesFlow)
|
||||
val flowHandle = aliceNode.rpc.startFlow(::SubscribingRawUpdatesFlow)
|
||||
|
||||
assertFailsWith<CordaRuntimeException>(
|
||||
"Flow ${ErrorHandling.SubscribingRawUpdatesFlow::class.java.name} tried to subscribe an Rx.Observer to VaultService.rawUpdates " +
|
||||
"Flow ${SubscribingRawUpdatesFlow::class.java.name} tried to subscribe an Rx.Observer to VaultService.rawUpdates " +
|
||||
"- Rx.Observables should only be subscribed outside the context of a flow " +
|
||||
"- the subscription did not succeed "
|
||||
) {
|
||||
@ -827,4 +827,14 @@ class VaultObserverExceptionTest {
|
||||
return getStatesById(null, status)
|
||||
}
|
||||
|
||||
@StartableByRPC
|
||||
class SubscribingRawUpdatesFlow: FlowLogic<Unit>() {
|
||||
override fun call() {
|
||||
val rawUpdates = serviceHub.vaultService.rawUpdates
|
||||
logger.info("Accessing rawUpdates in a flow is fine! ")
|
||||
rawUpdates.subscribe {
|
||||
println("However, adding a subscription will make the flow fail!")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -51,16 +51,4 @@ object ErrorHandling {
|
||||
hookAfterSecondCheckpoint.invoke() // should be never executed
|
||||
}
|
||||
}
|
||||
|
||||
@StartableByRPC
|
||||
class SubscribingRawUpdatesFlow: FlowLogic<Unit>() {
|
||||
override fun call() {
|
||||
val rawUpdates = serviceHub.vaultService.rawUpdates
|
||||
logger.info("Accessing rawUpdates in a flow is fine! ")
|
||||
rawUpdates.subscribe {
|
||||
println("However, adding a subscription will make the flow fail!")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user