From d91c4c047197a408628a09f89c2489380b0e1f77 Mon Sep 17 00:00:00 2001 From: Geert Bosch Date: Mon, 23 Nov 2015 11:19:29 -0500 Subject: SERVER-21627: Increase journal buffer limit for debug builds --- src/mongo/db/storage/mmap_v1/aligned_builder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mongo/db/storage/mmap_v1/aligned_builder.cpp b/src/mongo/db/storage/mmap_v1/aligned_builder.cpp index ce2ae8296b9..911be67031a 100644 --- a/src/mongo/db/storage/mmap_v1/aligned_builder.cpp +++ b/src/mongo/db/storage/mmap_v1/aligned_builder.cpp @@ -111,7 +111,7 @@ void NOINLINE_DECL AlignedBuilder::growReallocate(unsigned oldLen) { } // Use smaller maximum for debug builds, as we should never be close the the maximum - dassert(_len <= 256 * MB); + dassert(_len <= 512 * MB); // Compute newSize by doubling the existing maximum size until the maximum is reached invariant(oldSize > 0); -- cgit v1.2.1