CORDA-1147 - fix shell (#2730) (#2737)

This commit is contained in:
Tudor Malene 2018-03-05 19:11:04 +00:00 committed by GitHub
parent 5efea22a9b
commit 3a247f2966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 */