Skip to content
Snippets Groups Projects
Commit b33fd182 authored by Tommy Persson's avatar Tommy Persson
Browse files

Bug fix remote

parent a4ced971
Branches
Tags
No related merge requests found
......@@ -183,10 +183,12 @@ class RemoteExecutor(TickedExecutor):
self.fail(f"start tst failed: {fail_reason}")
return
else:
if jobj["response"] != "running":
if jobj["response"] != "running" and jobj["response"] != "finished":
fail_reason = jobj["fail-reason"]
self.fail(f"start tst failed: {fail_reason}")
self.fail(f"start task failed: {fail_reason}")
return
if jobj["response"] != "finished":
finished_flag = True
if self.root_uuid in self.feedback:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment