From 049088b216e59ff0e02874a0005f8c65ae860a50 Mon Sep 17 00:00:00 2001
From: Michael Hanselmann <hansmi@google.com>
Date: Mon, 23 Aug 2010 16:54:22 +0200
Subject: [PATCH] =?UTF-8?q?Finalize=20removal=20of=20=E2=80=9Clock=5Fstatu?=
 =?UTF-8?q?s=E2=80=9D=20job=20field?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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

Signed-off-by: Michael Hanselmann <hansmi@google.com>
Reviewed-by: Iustin Pop <iustin@google.com>
---
 man/gnt-job.sgml | 6 ------
 scripts/gnt-job  | 3 ---
 2 files changed, 9 deletions(-)

diff --git a/man/gnt-job.sgml b/man/gnt-job.sgml
index d7cfa27e9..c55ee889e 100644
--- a/man/gnt-job.sgml
+++ b/man/gnt-job.sgml
@@ -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>
 
diff --git a/scripts/gnt-job b/scripts/gnt-job
index 2e71baea1..3088a1427 100755
--- a/scripts/gnt-job
+++ b/scripts/gnt-job
@@ -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)
 
-- 
GitLab