File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,16 @@ to |oldfcv|. To check ``featureCompatibilityVersion``:
3636
3737 db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )
3838
39- The operation should return a result that includes
40- ``"featureCompatibilityVersion" : { " version" : "6.0" }``.
39+ The operation returns a document with the current feature compatibility
40+ version:
4141
42- To set or update ``featureCompatibilityVersion``, run the following
43- command:
42+ .. code-block:: javascript
43+ :copyable: false
44+
45+ { featureCompatibilityVersion : { version : "6.0" }, ok: 1}
46+
47+ To set or update ``featureCompatibilityVersion`` to ``6.0``, run the
48+ following command:
4449
4550.. code-block:: javascript
4651
@@ -98,7 +103,7 @@ Upgrade Procedure
98103
99104 mongod --version
100105
101- The command output should indicate a |oldseries| release.
106+ The command output indicates a |oldseries| release.
102107
103108 .. step:: Enable backwards-incompatible |newversion| features.
104109
@@ -113,7 +118,7 @@ Upgrade Procedure
113118
114119 .. code-block:: javascript
115120
116- db.adminCommand( { setFeatureCompatibilityVersion: "6 .0" } )
121+ db.adminCommand( { setFeatureCompatibilityVersion: "7 .0" } )
117122
118123 This command must perform writes to an internal system
119124 collection. If for any reason the command does not complete
You can’t perform that action at this time.
0 commit comments