summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Girbal <antoine@10gen.com>2011-08-14 17:22:13 -0700
committerAntoine Girbal <antoine@10gen.com>2011-08-14 17:22:13 -0700
commitd6d4ee256edd8989a74fd6716841780696154da5 (patch)
tree96c42c2437f6e430f8d139f5c6e9a6170866dd2a
parente6d5176463c31e15d3f14ac4e7184c024f38dd6f (diff)
downloadmongo-d6d4ee256edd8989a74fd6716841780696154da5.tar.gz
- SERVER-3012: increased SM runtime limit to 64MB
-rw-r--r--scripting/engine_spidermonkey.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/engine_spidermonkey.cpp b/scripting/engine_spidermonkey.cpp
index 73ebfaa55da..aed7b1349a1 100644
--- a/scripting/engine_spidermonkey.cpp
+++ b/scripting/engine_spidermonkey.cpp
@@ -1073,7 +1073,7 @@ namespace mongo {
JS_SetCStringsAreUTF8();
#endif
- _runtime = JS_NewRuntime(8L * 1024L * 1024L);
+ _runtime = JS_NewRuntime(64L * 1024L * 1024L);
uassert( 10221 , "JS_NewRuntime failed" , _runtime );
if ( ! utf8Ok() ) {