summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@mongodb.com>2019-10-10 13:55:44 +0000
committerevergreen <evergreen@mongodb.com>2019-10-10 13:55:44 +0000
commit00956ca3af08029dae3e4e0eb2c27bcf8a6bd923 (patch)
treecfb213a657fc78aafea69d2f67c3c4462c26d339
parent0efcbe92a9888c684472439844822e7e98885802 (diff)
downloadmongo-00956ca3af08029dae3e4e0eb2c27bcf8a6bd923.tar.gz
SERVER-43447 Removing FCV related TODO in pipeline/expression.cpp (not doing it)
-rw-r--r--src/mongo/db/pipeline/expression.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/pipeline/expression.cpp b/src/mongo/db/pipeline/expression.cpp
index cbf12acff04..61abc3f009b 100644
--- a/src/mongo/db/pipeline/expression.cpp
+++ b/src/mongo/db/pipeline/expression.cpp
@@ -145,9 +145,9 @@ intrusive_ptr<Expression> Expression::parseExpression(
// version.
auto& entry = it->second;
uassert(ErrorCodes::QueryFeatureNotAllowed,
- // TODO SERVER-31968 we would like to include the current version and the required
- // minimum version in this error message, but using
- // FeatureCompatibilityVersion::toString() would introduce a dependency cycle.
+ // We would like to include the current version and the required minimum version in this
+ // error message, but using FeatureCompatibilityVersion::toString() would introduce a
+ // dependency cycle (see SERVER-31968).
str::stream() << opName
<< " is not allowed in the current feature compatibility version. See "
<< feature_compatibility_version_documentation::kCompatibilityLink