[buildinstall] Stop parsing task_id
KojiWrapper returns the task id as an integer already (if at all). There is no need to parse it again. Pagure: #148 Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
e1895bff26
commit
abcc51fb85
@ -416,10 +416,10 @@ class BuildinstallThread(WorkerThread):
|
|||||||
time.sleep(num * 3)
|
time.sleep(num * 3)
|
||||||
|
|
||||||
output = koji_wrapper.run_runroot_cmd(koji_cmd, log_file=log_file)
|
output = koji_wrapper.run_runroot_cmd(koji_cmd, log_file=log_file)
|
||||||
task_id = int(output["task_id"])
|
|
||||||
if output["retcode"] != 0:
|
if output["retcode"] != 0:
|
||||||
raise RuntimeError("Runroot task failed: %s. See %s for more details."
|
raise RuntimeError("Runroot task failed: %s. See %s for more details."
|
||||||
% (output["task_id"], log_file))
|
% (output["task_id"], log_file))
|
||||||
|
task_id = output["task_id"]
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# run locally
|
# run locally
|
||||||
|
Loading…
Reference in New Issue
Block a user