mesos-site git commit: Updated the website built from mesos SHA: f811146.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site 7f3e058d1 -> cb3434684 Updated the website built from mesos SHA: f811146. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/cb343468 Tree:

mesos-site git commit: Updated the website built from mesos SHA: 91ea75e.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site db43ea8ad -> 7f3e058d1 Updated the website built from mesos SHA: 91ea75e. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/7f3e058d Tree:

[2/3] mesos git commit: Added a test to ensure non-quota role reservations are allocated.

2017-12-15 Thread bmahler
Added a test to ensure non-quota role reservations are allocated. This test checks against the symptom of failing to allocate non-quota role's reservations if resources are set aside for the quota limit headroom. See MESOS-8293. Review: https://reviews.apache.org/r/64465/ Project:

[1/3] mesos git commit: Added a test to check shared resources accounting in quota enforcement.

2017-12-15 Thread bmahler
Repository: mesos Updated Branches: refs/heads/master 91ea75e83 -> f8111469b Added a test to check shared resources accounting in quota enforcement. This test verifies that when enforcing quota limit, shared resources that are part of a role's reserved-allocated resources are only charged

mesos git commit: Toggled the authenticate_http_readwrite flag in MesosTest.

2017-12-15 Thread grag
Repository: mesos Updated Branches: refs/heads/master a4b1134e4 -> 91ea75e83 Toggled the authenticate_http_readwrite flag in MesosTest. The default executor authentication mechanism depends on SSL support being enabled in the build. Multiple tests that invoke the default executor have

[1/3] mesos-site git commit: Updated the website built from mesos SHA: a4b1134.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site 4f4327f9f -> db43ea8ad http://git-wip-us.apache.org/repos/asf/mesos-site/blob/db43ea8a/content/blog/feed.xml -- diff --git a/content/blog/feed.xml

[2/3] mesos-site git commit: Updated the website built from mesos SHA: a4b1134.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/db43ea8a/content/api/latest/c++/status__update__manager__process_8hpp_source.html -- diff --git a/content/api/latest/c++/status__update__manager__process_8hpp_source.html

[3/3] mesos-site git commit: Updated the website built from mesos SHA: a4b1134.

2017-12-15 Thread git-site-role
Updated the website built from mesos SHA: a4b1134. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/db43ea8a Tree: http://git-wip-us.apache.org/repos/asf/mesos-site/tree/db43ea8a Diff:

[1/4] mesos-site git commit: Updated the website built from mesos SHA: 3eaab8a.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site e074f8dd8 -> 4f4327f9f http://git-wip-us.apache.org/repos/asf/mesos-site/blob/4f4327f9/content/sitemap.xml -- diff --git a/content/sitemap.xml b/content/sitemap.xml

[3/4] mesos-site git commit: Updated the website built from mesos SHA: 3eaab8a.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/4f4327f9/content/api/latest/c++/status__update__manager__process_8hpp_source.html -- diff --git a/content/api/latest/c++/status__update__manager__process_8hpp_source.html

[2/4] mesos-site git commit: Updated the website built from mesos SHA: 3eaab8a.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/4f4327f9/content/api/latest/c++/windows_2os_8hpp_source.html -- diff --git a/content/api/latest/c++/windows_2os_8hpp_source.html

mesos git commit: Made OfferOperationStatusUpdateManager tests pass on Windows.

2017-12-15 Thread andschwa
Repository: mesos Updated Branches: refs/heads/master 3eaab8a2e -> a4b1134e4 Made OfferOperationStatusUpdateManager tests pass on Windows. Review: https://reviews.apache.org/r/64522/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[4/6] mesos git commit: Windows: Fixed type in job object `pid_list` struct.

2017-12-15 Thread andschwa
Windows: Fixed type in job object `pid_list` struct. This type was erroneously declared as `ULONG_PTR` because the documentation states it as such. This is true if the array is dynamically allocated, then the struct ends with a pointer to the first element of the array. However, we avoid this

[5/6] mesos git commit: Included `` where used.

2017-12-15 Thread andschwa
Included `` where used. This was not caught previously because the pre-compiled header included implicitly. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/bd7b1f32 Tree:

[2/6] mesos git commit: Windows: Stopped compiling files with no source code.

2017-12-15 Thread andschwa
Windows: Stopped compiling files with no source code. These two `utils.cpp` files have no code on Windows due to the source being wrapped in `#ifdef __linux__`, and so they generate warnings as the compiled objects defined no new symbols. Since they are unused, removing them from the Windows

[6/6] mesos git commit: Windows: Removed `/debug:fastlink` linker flag.

2017-12-15 Thread andschwa
Windows: Removed `/debug:fastlink` linker flag. With Visual Studio 2017, `fastlink` is now the default, so this is superfluous. Morever, this particular CMake variable also passes the flag to `lib.exe` when generating a static library, and this emits a warning because `lib.exe` does not accept

[1/6] mesos git commit: Windows: Patched protobuf to fix warnings.

2017-12-15 Thread andschwa
Repository: mesos Updated Branches: refs/heads/master 071e8cfbe -> 3eaab8a2e Windows: Patched protobuf to fix warnings. The patch was generated by diffing the following commit against tag v3.5.0, this was merged upstream in https://github.com/google/protobuf/pull/4000: commit 80809271a

[3/6] mesos git commit: Windows: Silenced known deprecation warning from Google Test.

2017-12-15 Thread andschwa
Windows: Silenced known deprecation warning from Google Test. We previously fixed the Google Test build by defining `_SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING` when building Google Test, but by not also adding it to the interface, it generates a warning for every test file including it. This is

[2/2] mesos-site git commit: Updated the website built from mesos SHA: 071e8cf.

2017-12-15 Thread git-site-role
Updated the website built from mesos SHA: 071e8cf. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/e074f8dd Tree: http://git-wip-us.apache.org/repos/asf/mesos-site/tree/e074f8dd Diff:

[1/2] mesos-site git commit: Updated the website built from mesos SHA: 071e8cf.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site 69e3402d0 -> e074f8dd8 http://git-wip-us.apache.org/repos/asf/mesos-site/blob/e074f8dd/content/blog/feed.xml -- diff --git a/content/blog/feed.xml

[5/8] mesos git commit: Updated CHANGELOG about the change to GET_CONTAINERS API.

2017-12-15 Thread jieyu
Updated CHANGELOG about the change to GET_CONTAINERS API. Review: https://reviews.apache.org/r/64654 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a2bae69e Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/a2bae69e

[1/8] mesos git commit: Added VIEW_STANDALONE_CONTAINER ACL.

2017-12-15 Thread jieyu
Repository: mesos Updated Branches: refs/heads/master 7e432a930 -> 071e8cfbe Added VIEW_STANDALONE_CONTAINER ACL. Review: https://reviews.apache.org/r/64638 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a814362d Tree:

[7/8] mesos git commit: Added validation for VIEW_STANDALONE_CONTAINER ACL.

2017-12-15 Thread jieyu
Added validation for VIEW_STANDALONE_CONTAINER ACL. Review: https://reviews.apache.org/r/64656 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/da538bdb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/da538bdb Diff:

[4/8] mesos git commit: Added doc for new fields in GET_CONTAINERS operator API.

2017-12-15 Thread jieyu
Added doc for new fields in GET_CONTAINERS operator API. Review: https://reviews.apache.org/r/64653 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d9951bd5 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d9951bd5

[6/8] mesos git commit: Updated upgrades.md about the GET_CONTAINERS API change.

2017-12-15 Thread jieyu
Updated upgrades.md about the GET_CONTAINERS API change. Review: https://reviews.apache.org/r/64655 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c07eab68 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/c07eab68

[8/8] mesos git commit: Added tests for VIEW_STANDALONE_CONTAINER ACL.

2017-12-15 Thread jieyu
Added tests for VIEW_STANDALONE_CONTAINER ACL. Review: https://reviews.apache.org/r/64657 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/071e8cfb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/071e8cfb Diff:

[3/8] mesos git commit: Supported getting all containers in the agent API.

2017-12-15 Thread jieyu
Supported getting all containers in the agent API. Review: https://reviews.apache.org/r/64639 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7de21b1c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7de21b1c Diff:

[13/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1WindowsFilesystemIsolatorProcess-members.html -- diff --git

[04/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/src_2slave_2containerizer_2mesos_2isolators_2docker_2volume_2isolator_8hpp_source.html -- diff --git

[14/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1SharedFilesystemIsolatorProcess-members.html -- diff --git

[06/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/sandbox__path_8hpp_source.html -- diff --git a/content/api/latest/c++/sandbox__path_8hpp_source.html

[03/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/src_2slave_2containerizer_2mesos_2isolators_2namespaces_2pid_8hpp_source.html -- diff --git

[09/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/index.hhc -- diff --git a/content/api/latest/c++/index.hhc b/content/api/latest/c++/index.hhc index 47e6f16..d1fb644 100644 ---

[18/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1CgroupsIsolatorProcess-members.html -- diff --git

[17/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1LinuxFilesystemIsolatorProcess-members.html -- diff --git

[11/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/functions_0x77.html -- diff --git a/content/api/latest/c++/functions_0x77.html b/content/api/latest/c++/functions_0x77.html index

[19/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
Updated the website built from mesos SHA: 7e432a9. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/69e3402d Tree: http://git-wip-us.apache.org/repos/asf/mesos-site/tree/69e3402d Diff:

[08/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/index.hhk -- diff --git a/content/api/latest/c++/index.hhk b/content/api/latest/c++/index.hhk index 7855336..12de526 100644 ---

[16/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1NamespacesPidIsolatorProcess-members.html -- diff --git

[01/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site d8dbb5ef9 -> 69e3402d0 http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/windows_2cpu_8hpp_source.html -- diff --git

[15/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/classmesos_1_1internal_1_1slave_1_1PosixDiskIsolatorProcess-members.html -- diff --git

[05/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/slave_2containerizer_2mesos_2isolators_2posix_2rlimits_8hpp_source.html -- diff --git

[10/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/include_2mesos_2slave_2isolator_8hpp_source.html -- diff --git a/content/api/latest/c++/include_2mesos_2slave_2isolator_8hpp_source.html

[12/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/functions_0x6d.html -- diff --git a/content/api/latest/c++/functions_0x6d.html b/content/api/latest/c++/functions_0x6d.html index

[07/19] mesos-site git commit: Updated the website built from mesos SHA: 7e432a9.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/69e3402d/content/api/latest/c++/ipc_8hpp_source.html -- diff --git a/content/api/latest/c++/ipc_8hpp_source.html b/content/api/latest/c++/ipc_8hpp_source.html index

[5/6] mesos-site git commit: Updated the website built from mesos SHA: aaef856.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/d8dbb5ef/content/api/latest/c++/functions_0x73.html -- diff --git a/content/api/latest/c++/functions_0x73.html b/content/api/latest/c++/functions_0x73.html index

[2/6] mesos-site git commit: Updated the website built from mesos SHA: aaef856.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/d8dbb5ef/content/api/latest/c++/v1_2resource__provider_8hpp_source.html -- diff --git a/content/api/latest/c++/v1_2resource__provider_8hpp_source.html

[4/4] mesos git commit: Fixed a bug in handling standalone container recovery.

2017-12-15 Thread jieyu
Fixed a bug in handling standalone container recovery. It's possible that the pid is not known for a standalone container. For instance, the agent crashes after the containerizer checkpoints the runtime directory, but before it is able to checkpoint the pid. In that case, we just assume that the

[4/6] mesos-site git commit: Updated the website built from mesos SHA: aaef856.

2017-12-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/mesos-site/blob/d8dbb5ef/content/api/latest/c++/http__connection_8hpp_source.html -- diff --git a/content/api/latest/c++/http__connection_8hpp_source.html

[1/6] mesos-site git commit: Updated the website built from mesos SHA: aaef856.

2017-12-15 Thread git-site-role
Repository: mesos-site Updated Branches: refs/heads/asf-site 395dc9490 -> d8dbb5ef9 http://git-wip-us.apache.org/repos/asf/mesos-site/blob/d8dbb5ef/content/sitemap.xml -- diff --git a/content/sitemap.xml b/content/sitemap.xml

[6/6] mesos-site git commit: Updated the website built from mesos SHA: aaef856.

2017-12-15 Thread git-site-role
Updated the website built from mesos SHA: aaef856. Project: http://git-wip-us.apache.org/repos/asf/mesos-site/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos-site/commit/d8dbb5ef Tree: http://git-wip-us.apache.org/repos/asf/mesos-site/tree/d8dbb5ef Diff:

[1/4] mesos git commit: Disabled checkpointing for OFFER_OPERATION_DROPPED in SLRP.

2017-12-15 Thread jieyu
Repository: mesos Updated Branches: refs/heads/master 699a5d226 -> 7e432a930 Disabled checkpointing for OFFER_OPERATION_DROPPED in SLRP. Review: https://reviews.apache.org/r/64633/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[2/4] mesos git commit: Added standalone isolator capability.

2017-12-15 Thread jieyu
Added standalone isolator capability. Recently, we introduced the standalone container suport (MESOS-7302). Some isolators might not be able to handle standalone containers. Therefore, we introduce an isolator capability (similar to nesting capability) so that we won't try to invoke those

[3/4] mesos git commit: Fixed unit error in storage local resource provider.

2017-12-15 Thread jieyu
Fixed unit error in storage local resource provider. Review: https://reviews.apache.org/r/64627/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1b4f3864 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/1b4f3864 Diff:

mesos git commit: Fixed handling of resource provider updates without resources.

2017-12-15 Thread bbannier
Repository: mesos Updated Branches: refs/heads/master aaef8563f -> 699a5d226 Fixed handling of resource provider updates without resources. On master failover the master might learn about a resource provider without resources. This patch relaxes an assertion in the master permitting such

[2/2] mesos git commit: Made resource provider driver start explicit.

2017-12-15 Thread bbannier
Made resource provider driver start explicit. The driver for HTTP connections of resource providers is implemented as an actor which takes callbacks. It previously started listening for and handling of events on creation. We typically store drivers as member of resource providers. This setup is

mesos git commit: Removed unused import in proto file.

2017-12-15 Thread bbannier
Repository: mesos Updated Branches: refs/heads/master 784b7f599 -> f036eb611 Removed unused import in proto file. Importing 'mesos/resource_provider/resource_provider.proto' became unnessecary after the cleanups in 'eeb09cbc1'. Review: https://reviews.apache.org/r/64599/ Project: