Skip to content
Snippets Groups Projects
Commit eba1aaad authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

gnt-job info: Convert to query2


Otherwise detecting unavailable jobs is hard (“status” is None, is this
an error or just an unavailable job?).

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent e07f7f7a
No related branches found
No related tags found
No related merge requests found
...@@ -218,27 +218,26 @@ def ShowJobs(opts, args): ...@@ -218,27 +218,26 @@ def ShowJobs(opts, args):
"opstart", "opexec", "opend", "received_ts", "start_ts", "end_ts", "opstart", "opexec", "opend", "received_ts", "start_ts", "end_ts",
] ]
result = GetClient().QueryJobs(args, selected_fields) result = GetClient().Query(constants.QR_JOB, selected_fields,
qlang.MakeSimpleFilter("id", args)).data
first = True first = True
for idx, entry in enumerate(result): for entry in result:
if not first: if not first:
format_msg(0, "") format_msg(0, "")
else: else:
first = False first = False
if entry is None: ((_, job_id), (rs_status, status), (_, ops), (_, opresult), (_, opstatus),
if idx <= len(args): (_, oplog), (_, opstart), (_, opexec), (_, opend), (_, recv_ts),
format_msg(0, "Job ID %s not found" % args[idx]) (_, start_ts), (_, end_ts)) = entry
else:
# this should not happen, when we don't pass args it will be a # Detect non-normal results
# valid job returned if rs_status != constants.RS_NORMAL:
format_msg(0, "Job ID requested as argument %s not found" % (idx + 1)) format_msg(0, "Job ID %s not found" % job_id)
continue continue
(job_id, status, ops, opresult, opstatus, oplog,
opstart, opexec, opend, recv_ts, start_ts, end_ts) = entry
format_msg(0, "Job ID: %s" % job_id) format_msg(0, "Job ID: %s" % job_id)
if status in _USER_JOB_STATUS: if status in _USER_JOB_STATUS:
status = _USER_JOB_STATUS[status] status = _USER_JOB_STATUS[status]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment