I am trying to upgrade my single node mongodb cluster from 3.4 to 3.6.
Everything is ok but I am not able to change feature compatibility to 3.6.
When I try-
db.adminCommand( { setFeatureCompatibilityVersion:"'3.6'" } )
I get an error saying -
{
"ok" : 0,
"errmsg" : "Invalid command argument. Expected '3.4' or '3.2', found '3.6' in: { setFeatureCompatibilityVersion: \"'3.6'\" }. See http://dochub.mongodb.org/core/3.4-feature-compatibility.",
"code" : 2,
"codeName" : "BadValue"
}