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

Finalize removal of “lock_status” job field


When removing the field in commit 9bdab621, I forgot to remove some parts.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 0849f36b
No related branches found
No related tags found
No related merge requests found
......@@ -227,12 +227,6 @@
<simpara>the list of opcode end times</simpara>
</listitem>
</varlistentry>
<varlistentry>
<term>lock_status</term>
<listitem>
<simpara>the lock status (useful for debugging)</simpara>
</listitem>
</varlistentry>
</variablelist>
</para>
......
......@@ -85,7 +85,6 @@ def ListJobs(opts, args):
"start_ts": "Start",
"end_ts": "End",
"received_ts": "Received",
"lock_status": "LockStatus",
}
else:
headers = None
......@@ -109,8 +108,6 @@ def ListJobs(opts, args):
val = FormatTimestamp(val)
elif field in ("opstart", "opexec", "opend"):
val = [FormatTimestamp(entry) for entry in val]
elif field == "lock_status" and not val:
val = "-"
row[idx] = str(val)
......
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