summaryrefslogtreecommitdiff
path: root/src/mongo/shell/shell_options.h
diff options
context:
space:
mode:
authorWaley Chen <waleycz@gmail.com>2016-09-13 16:10:04 -0400
committerWaley Chen <waleycz@gmail.com>2016-09-13 17:54:11 -0400
commit955cf8c998a60a8c2a2493dd428dd3d763e90259 (patch)
tree9e6253c35b752b6f853454cfb4a47acdb5cf77dd /src/mongo/shell/shell_options.h
parent4f211b037feac1d4c80d65df5a0fae12fcac1e4c (diff)
downloadmongo-955cf8c998a60a8c2a2493dd428dd3d763e90259.tar.gz
SERVER-22688 Provide a setParameter and shell option to control the js heap limit
Diffstat (limited to 'src/mongo/shell/shell_options.h')
-rw-r--r--src/mongo/shell/shell_options.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/shell/shell_options.h b/src/mongo/shell/shell_options.h
index 62191bfb0c9..296567025e3 100644
--- a/src/mongo/shell/shell_options.h
+++ b/src/mongo/shell/shell_options.h
@@ -73,6 +73,8 @@ struct ShellGlobalParams {
std::string readMode = "compatibility";
boost::optional<rpc::ProtocolSet> rpcProtocols = boost::none;
+
+ int jsHeapMBLimit = 0;
};
extern ShellGlobalParams shellGlobalParams;