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``:
36
36
37
37
db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )
38
38
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:
41
41
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:
44
49
45
50
.. code-block:: javascript
46
51
@@ -98,7 +103,7 @@ Upgrade Procedure
98
103
99
104
mongod --version
100
105
101
- The command output should indicate a |oldseries| release.
106
+ The command output indicates a |oldseries| release.
102
107
103
108
.. step:: Enable backwards-incompatible |newversion| features.
104
109
@@ -113,7 +118,7 @@ Upgrade Procedure
113
118
114
119
.. code-block:: javascript
115
120
116
- db.adminCommand( { setFeatureCompatibilityVersion: "6 .0" } )
121
+ db.adminCommand( { setFeatureCompatibilityVersion: "7 .0" } )
117
122
118
123
This command must perform writes to an internal system
119
124
collection. If for any reason the command does not complete
You can’t perform that action at this time.
0 commit comments