Details
-
Task
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.3.0, 1.5.0
-
None
-
None
Description
Apparently, there's no option to remove a weight for a specific role.
I have something like this:
[ { "role": "role2", "weight": 1.1 }, { "role": "marathon", "weight": 3.0 }, { "role": "chronos", "weight": 1.0 }, { "role": "*", "weight": 1.0 }, { "role": "role1", "weight": 1.1 } ]
and I want to remove the weight for '*'. I send a PUT request to the master with the following payload:
[ { "role": "role2", "weight": 1.1 }, { "role": "marathon", "weight": 3.0 }, { "role": "chronos", "weight": 1.0 }, { "role": "role1", "weight": 1.1 } ]
Then I do a GET on the master
I still get the weight for the '*' role
Attachments
Issue Links
- is related to
-
MESOS-8807 Role weights remain persisted when set back to the default weight.
- Accepted