Skip to content

Commit 54e3026

Browse files
author
joeldudleyr3
committed
Updates the error message.
1 parent ebbca94 commit 54e3026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/src/main/kotlin/net/corda/node/shell/InteractiveShell.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ object InteractiveShell {
294294
}
295295
val flow = ctor.newInstance(*args) as FlowLogic<*>
296296
if (flow.progressTracker == null) {
297-
errors.add("You must override the flow's progress tracker to run it from the shell")
297+
errors.add("A flow must override the progress tracker in order to be run from the shell")
298298
continue
299299
}
300300
return invoke(flow)

0 commit comments

Comments
 (0)