Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Authorization docs incorrectly describe how to turn off permissive mode.
http://mesos.apache.org/documentation/latest/authorization/
The docs state that this is valid for an ACL file:
... "permissive" : "false", ...
I attempted that with the latest release of Mesos and it failed because the JSON value was not expecting a String. I changed it to a boolean:
... "permissive" : false, ...
And Mesos happily accepted it. The documentation simply needs updating.