CORDA-1147 - fix shell (#2730)

This commit is contained in:
Tudor Malene 2018-03-05 16:51:31 +00:00 committed by Katelyn Baker
parent a042240f26
commit d6f9bbfe2e

View File

@ -182,6 +182,8 @@ class ProgressTracker(vararg steps: Step) {
fun endWithError(error: Throwable) {
check(!hasEnded) { "Progress tracker has already ended" }
_changes.onError(error)
_stepsTreeIndexChanges.onError(error)
_stepsTreeChanges.onError(error)
}
/** The parent of this tracker: set automatically by the parent when a tracker is added as a child */