Skip to content

Commit

Permalink
- SERVER-3012: increased SM runtime limit to 64MB
Browse files Browse the repository at this point in the history
  • Loading branch information
agirbal committed Aug 15, 2011
1 parent e6d5176 commit d6d4ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripting/engine_spidermonkey.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ namespace mongo {
JS_SetCStringsAreUTF8(); JS_SetCStringsAreUTF8();
#endif #endif


_runtime = JS_NewRuntime(8L * 1024L * 1024L); _runtime = JS_NewRuntime(64L * 1024L * 1024L);
uassert( 10221 , "JS_NewRuntime failed" , _runtime ); uassert( 10221 , "JS_NewRuntime failed" , _runtime );


if ( ! utf8Ok() ) { if ( ! utf8Ok() ) {
Expand Down

0 comments on commit d6d4ee2

Please sign in to comment.