summaryrefslogtreecommitdiff
path: root/src/mongo/db/op_observer.cpp
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2016-09-01 16:50:15 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2016-09-02 10:22:35 -0400
commit54488beeea99b3046931109c170d7e51cea0964d (patch)
tree857ef9804616dd4b0ab928816c8f757717b65865 /src/mongo/db/op_observer.cpp
parent03b26cf2e15deb65326f7be7d0b5a94f7ca5471c (diff)
downloadmongo-54488beeea99b3046931109c170d7e51cea0964d.tar.gz
SERVER-25937 Writing to system.views collection should not error when featureCompatibilityVersion is 3.2
Diffstat (limited to 'src/mongo/db/op_observer.cpp')
-rw-r--r--src/mongo/db/op_observer.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/op_observer.cpp b/src/mongo/db/op_observer.cpp
index f3e1a3729c8..8defc1c71fe 100644
--- a/src/mongo/db/op_observer.cpp
+++ b/src/mongo/db/op_observer.cpp
@@ -91,7 +91,6 @@ void OpObserver::onInserts(OperationContext* txn,
}
if (nss.coll() == DurableViewCatalog::viewsCollectionName()) {
DurableViewCatalog::onExternalChange(txn, nss);
- DurableViewCatalog::confirm34FeatureCompatibilityVersion();
}
}
@@ -118,7 +117,6 @@ void OpObserver::onUpdate(OperationContext* txn, const OplogUpdateEntryArgs& arg
NamespaceString nss(args.ns);
if (nss.coll() == DurableViewCatalog::viewsCollectionName()) {
DurableViewCatalog::onExternalChange(txn, nss);
- DurableViewCatalog::confirm34FeatureCompatibilityVersion();
}
if (args.ns == FeatureCompatibilityVersion::kCollection) {