SERVER-3012: increased SM runtime limit to 64MB

This commit is contained in:
agirbal
2011-05-23 23:53:10 -07:00
parent 53677f3b05
commit 6bfc2d5d5f

View File

@@ -1075,7 +1075,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() ) {