summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2014-05-28 18:22:27 -0400
committerDan Pasette <dan@mongodb.com>2014-05-29 17:41:15 -0400
commit8f8192fa7316bf6823ab140c8fbe6960d5d8124f (patch)
tree1e26eccacefed6ce349880da31fcffa3aee26574
parent6a8781ee93fca9c8371275545d8190b1c291d5cb (diff)
downloadmongo-8f8192fa7316bf6823ab140c8fbe6960d5d8124f.tar.gz
SERVER-14073 allow planSummary string to be longer
(cherry picked from commit d4a54eddde371014a63c23a303b998880010d2bb)
-rw-r--r--src/mongo/db/curop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/curop.h b/src/mongo/db/curop.h
index 7562f47a01d..d7caa765f5e 100644
--- a/src/mongo/db/curop.h
+++ b/src/mongo/db/curop.h
@@ -119,7 +119,7 @@ namespace mongo {
/* lifespan is different than CurOp because of recursives with DBDirectClient */
class OpDebug {
public:
- OpDebug() : ns(""){ reset(); }
+ OpDebug() : ns(""), planSummary(2048) { reset(); }
void reset();