summaryrefslogtreecommitdiff
path: root/db/commands/distinct.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'db/commands/distinct.cpp')
-rw-r--r--db/commands/distinct.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/commands/distinct.cpp b/db/commands/distinct.cpp
index 2e26bcd..7b2f6a8 100644
--- a/db/commands/distinct.cpp
+++ b/db/commands/distinct.cpp
@@ -109,7 +109,7 @@ namespace mongo {
int now = bb.len();
- uassert(10044, "distinct too big, 4mb cap", ( now + e.size() + 1024 ) < bufSize );
+ uassert(10044, "distinct too big, 16mb cap", ( now + e.size() + 1024 ) < bufSize );
arr.append( e );
BSONElement x( start + now );