Merge pull request from corda/merges/june-19-17-37

This commit is contained in:
Michele Sollecito 2018-06-19 17:41:55 +01:00 committed by GitHub
commit 80d7c28606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
constants.properties
node/src/main/kotlin/net/corda/node/services/statemachine

@ -1,4 +1,3 @@
gradlePluginsVersion=4.0.24
#
# R3 Proprietary and Confidential
#
@ -9,7 +8,7 @@ gradlePluginsVersion=4.0.24
# Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
#
gradlePluginsVersion=4.0.23
gradlePluginsVersion=4.0.25
kotlinVersion=1.2.50
platformVersion=4
guavaVersion=21.0

@ -71,6 +71,7 @@ internal class FlowMonitor constructor(private val retrieveFlows: () -> Set<Flow
is FlowIORequest.Sleep -> "to wake up from sleep ending at ${LocalDateTime.ofInstant(request.wakeUpAfter, ZoneId.systemDefault())}"
FlowIORequest.WaitForSessionConfirmations -> "for sessions to be confirmed"
is FlowIORequest.ExecuteAsyncOperation -> "for asynchronous operation of type ${request.operation::javaClass} to complete"
FlowIORequest.ForceCheckpoint -> "for forcing a checkpoint at an arbitrary point in a flow"
}
)
message.append(".")