From 8241911e0e7e91dfb10e75c21401ad506ac2b3ad Mon Sep 17 00:00:00 2001 From: Kyriakos Tharrouniatis Date: Sun, 16 Feb 2020 23:42:42 +0000 Subject: [PATCH] Minor text update --- .../kotlin/net/corda/node/services/vault/NodeVaultService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/src/main/kotlin/net/corda/node/services/vault/NodeVaultService.kt b/node/src/main/kotlin/net/corda/node/services/vault/NodeVaultService.kt index 8f33b3f129..f31798ee81 100644 --- a/node/src/main/kotlin/net/corda/node/services/vault/NodeVaultService.kt +++ b/node/src/main/kotlin/net/corda/node/services/vault/NodeVaultService.kt @@ -221,14 +221,14 @@ class NodeVaultService( return PreventSubscriptionsSubject(_rawUpdatesPublisher) { log.error( "Flow ${it.logic::class.java.name} tried to subscribe an Rx.Observer to VaultService.rawUpdates " + - "- Rx.Observables should only be subscribed outside the context of a flow " + + "- Rx.Observables should only be subscribed to outside the context of a flow " + "- the subscription did not succeed " + "- aborting the flow " ) FlowException( "Flow ${it.logic::class.java.name} tried to subscribe an Rx.Observer to VaultService.rawUpdates " + - "- Rx.Observables should only be subscribed outside the context of a flow " + + "- Rx.Observables should only be subscribed to outside the context of a flow " + "- the subscription did not succeed " ) }