Skip to content

Commit 92e829f

Browse files
authored
DOCS-16386 Fix 7.0 Upgrade 7.0 Standalone FCV Version (#4810)
* DOCS-16386 Fix 7.0 Upgrade 7.0 Standalone FCV Version * remove should * * * * * * * * * * * *
1 parent 0ead8c4 commit 92e829f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

source/release-notes/7.0-upgrade-standalone.txt

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)