Set Feature Compatibility version to 7.0 after upgrading to 23.242
Original Question or Issue:
We have upgraded to the latest version of Filecloud, and according to the instructions, we are to run this command on the primary DB node.
db.adminCommand({ setFeatureCompatibilityVersion: "7.0" })
But I keep getting an error to use confirm: true
Environment:
- Product - FileCloud Server
- Version - 23.242
- Platform - Any
Steps to Reproduce:
Error or Log Message:
Defect or Enhancement Number:
Cause:
Incorrect parameter
Resolution or Workaround:
Use the following command:
db.adminCommand({setFeatureCompatibilityVersion: "7.0", confirm: true});
Notes: