summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/pipeline.cpp
diff options
context:
space:
mode:
authorVarun Ravichandran <varun.ravichandran@mongodb.com>2021-05-07 19:15:23 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-05-12 20:02:43 +0000
commitfcf22de92b83f551be170b57503e5d493cef771d (patch)
treef8645a677e2ebb94bdfaea866b0bef705058f01d /src/mongo/db/pipeline/pipeline.cpp
parentf7235a380065092cacf65f15841eb98f6c52c1b4 (diff)
downloadmongo-fcf22de92b83f551be170b57503e5d493cef771d.tar.gz
SERVER-55961: Replace 'whitelist' in variable names, types, and comments
Diffstat (limited to 'src/mongo/db/pipeline/pipeline.cpp')
-rw-r--r--src/mongo/db/pipeline/pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/pipeline.cpp b/src/mongo/db/pipeline/pipeline.cpp
index 875c3e9e957..131d30a9161 100644
--- a/src/mongo/db/pipeline/pipeline.cpp
+++ b/src/mongo/db/pipeline/pipeline.cpp
@@ -99,7 +99,7 @@ void validateTopLevelPipeline(const Pipeline& pipeline) {
firstStageConstraints.isIndependentOfAnyCollection));
// If the first stage is a $changeStream stage, then all stages in the pipeline must be
- // either $changeStream stages or whitelisted as being able to run in a change stream.
+ // either $changeStream stages or allowlisted as being able to run in a change stream.
if (firstStageConstraints.isChangeStreamStage()) {
for (auto&& source : sources) {
uassert(ErrorCodes::IllegalOperation,