From 25de5330e9a575d094711a2dc5287d04ba10ad47 Mon Sep 17 00:00:00 2001 From: Eliot Horowitz Date: Thu, 7 Jul 2011 08:27:31 -0400 Subject: Revert "fix active in curop" This reverts commit 10d2d10f7f3e04f1f6eae7467137bb127458b9ee. --- db/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/client.cpp b/db/client.cpp index 51011515290..e4fd4b9dddc 100644 --- a/db/client.cpp +++ b/db/client.cpp @@ -318,7 +318,7 @@ namespace mongo { BSONObj CurOp::infoNoauth() { BSONObjBuilder b; b.append("opid", _opNum); - bool a = _active && ( _start || _waitingForLock ); + bool a = _active && _start; b.append("active", a); if ( _lockType ) b.append("lockType" , _lockType > 0 ? "write" : "read" ); -- cgit v1.2.1