diff --git a/gc3libs/core.py b/gc3libs/core.py index b3fca266..43aa8d96 100755 --- a/gc3libs/core.py +++ b/gc3libs/core.py @@ -1549,7 +1549,7 @@ def progress(self): elif state == Run.State.NEW: # can happen only with TaskCollections assert not isinstance(task, Application) - elif state == Run.State.STOPPED: + elif state in [Run.State.STOPPED, Run.State.UNKNOWN]: # task changed state, mark as to remove transitioned.append(index) self._stopped.append(task)