Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.1.2, 1.2.0, 1.3.0
-
Mesosphere Sprint 78
-
2
Description
According to documentation and comments in code the order of the entries in the --isolation flag should specify the ordering of the isolators. Specifically, the `create` and `prepare` calls for each isolator should run serially in the order in which they appear in the --isolation flag, while the `cleanup` call should be serialized in reverse order (with exception of filesystem isolator which is always first).
But in fact, the isolators provided in '--isolation' flag are sorted alphabetically.
That happens in this line of code. In this line use of 'set<string>' is done (apparently instead of list or vector) and set is a sorted container.
Attachments
Issue Links
- is duplicated by
-
MESOS-8818 VolumeSandboxPathIsolatorTest.SharedParentTypeVolume fails on macOS
- Resolved
- is related to
-
MESOS-7909 Ordering dependency between 'linux/capabilities' and 'docker/runtime' isolator.
- Resolved
-
MESOS-5581 Guarantee ordering between Isolators
- Resolved
- relates to
-
MESOS-8083 Mesos containerizer should run isolate() sequentially.
- Open