summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-10-02 15:30:16 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-10-03 08:34:22 -0400
commit2217ee242cf401e3820bc3a046c6341c5537669f (patch)
treee182dfe8bffc527caf726c2cff0754b5b66779c1 /src/mongo/db/commands.h
parentf50acb128dc0485b48d8045587579ba48ae888b4 (diff)
downloadmongo-2217ee242cf401e3820bc3a046c6341c5537669f.tar.gz
SERVER-31349 Rename 'disallowCollectionCreation' generic argument to 'allowImplicitCollectionCreation'
Diffstat (limited to 'src/mongo/db/commands.h')
-rw-r--r--src/mongo/db/commands.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mongo/db/commands.h b/src/mongo/db/commands.h
index c2b91aa9b7a..463ce9a7f42 100644
--- a/src/mongo/db/commands.h
+++ b/src/mongo/db/commands.h
@@ -459,23 +459,23 @@ public:
// Not including "help" since we don't pass help requests through to the command parser.
// If that changes, it should be added. When you add to this list, consider whether you
// should also change the filterCommandRequestForPassthrough() function.
- return arg == "$audit" || //
- arg == "$client" || //
- arg == "$configServerState" || //
- arg == "$db" || //
- arg == "disallowCollectionCreation" || //
- arg == "$oplogQueryData" || //
- arg == "$queryOptions" || //
- arg == "$readPreference" || //
- arg == "$replData" || //
- arg == "$clusterTime" || //
- arg == "maxTimeMS" || //
- arg == "readConcern" || //
- arg == "shardVersion" || //
- arg == "tracking_info" || //
- arg == "writeConcern" || //
- arg == "lsid" || //
- arg == "txnNumber" || //
+ return arg == "$audit" || //
+ arg == "$client" || //
+ arg == "$configServerState" || //
+ arg == "$db" || //
+ arg == "allowImplicitCollectionCreation" || //
+ arg == "$oplogQueryData" || //
+ arg == "$queryOptions" || //
+ arg == "$readPreference" || //
+ arg == "$replData" || //
+ arg == "$clusterTime" || //
+ arg == "maxTimeMS" || //
+ arg == "readConcern" || //
+ arg == "shardVersion" || //
+ arg == "tracking_info" || //
+ arg == "writeConcern" || //
+ arg == "lsid" || //
+ arg == "txnNumber" || //
false; // These comments tell clang-format to keep this line-oriented.
}