mesos git commit: Revert "Added validation for `ContainerInfo`."

2016-09-20 Thread alexr
Repository: mesos Updated Branches: refs/heads/master 001c55c30 -> f93f4fca5 Revert "Added validation for `ContainerInfo`." This reverts commit e65f580bf0cbea64cedf521cf169b9b4c9f85454. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Tracked recovered and prepared cgroups subsystems for containers.

2016-09-20 Thread jieyu
Repository: mesos Updated Branches: refs/heads/master f93f4fca5 -> 27a2fb864 Tracked recovered and prepared cgroups subsystems for containers. Recover newly added cgroups subsystems on existing containers would fail, and continue to perform the `update` and other operations of the newly added

[1/2] mesos git commit: Tweaked initialization order in executor driver.

2016-09-20 Thread mpark
Repository: mesos Updated Branches: refs/heads/master 27a2fb864 -> d2aacda42 Tweaked initialization order in executor driver. We should initialize libprocess before calling into any libprocess facilities (in this case, `process::Latch`). Review: https://reviews.apache.org/r/52082/ Project:

[2/2] mesos git commit: Ensured that `Latch*` in exec, sched drivers are initialized.

2016-09-20 Thread mpark
Ensured that `Latch*` in exec, sched drivers are initialized. In error code paths, this value was previously left uninitialized, which might subsequently result in attempting to delete an uninitialized pointer value. Review: https://reviews.apache.org/r/52080/ Project:

mesos git commit: Mentioned `reserved_resources_full` info on the agent in relevant docs.

2016-09-20 Thread yan
Repository: mesos Updated Branches: refs/heads/master d2aacda42 -> 46379ba53 Mentioned `reserved_resources_full` info on the agent in relevant docs. Review: https://reviews.apache.org/r/52070 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Fixed a typo in `docker_containerizer_tests.cpp`.

2016-09-20 Thread mpark
Repository: mesos Updated Branches: refs/heads/master 46379ba53 -> 9303db67c Fixed a typo in `docker_containerizer_tests.cpp`. Review: https://reviews.apache.org/r/46264/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Missing `endl` in `cout` for default executor.

2016-09-20 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master d2b3d365c -> 8483fa8a9 Missing `endl` in `cout` for default executor. Review: https://reviews.apache.org/r/52109/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/3] mesos git commit: Updated the default executor to not automatically send TASK_FINISHED.

2016-09-20 Thread vinodkone
Updated the default executor to not automatically send TASK_FINISHED. Also updated the test accordingly. Review: https://reviews.apache.org/r/52106 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a6dfbbb8 Tree:

[1/3] mesos git commit: Updated default executor to send TASK_KILLED updates.

2016-09-20 Thread vinodkone
Repository: mesos Updated Branches: refs/heads/master 9303db67c -> d2b3d365c Updated default executor to send TASK_KILLED updates. Just like LAUNCH_GROUP implementation this is a dummy implementation that sends the TASK_KILLED upates without doing any actual kills. Review:

[2/3] mesos git commit: Updated default executor to set `healthy` status in status update.

2016-09-20 Thread vinodkone
Updated default executor to set `healthy` status in status update. Right now the executor always sets the health status as true. In the future this will be based on the health checker. Review: https://reviews.apache.org/r/52107 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Replaced unchecked `dynamic_cast` with `static_cast`.

2016-09-20 Thread mpark
Repository: mesos Updated Branches: refs/heads/master 1bc3b913e -> 001c55c30 Replaced unchecked `dynamic_cast` with `static_cast`. `Process` is a CRTP class where `T` must be a valid derived class. Also, it is customary to use `static_cast` for CRTP methods. This change uses a `static_cast`