git commit: Fixed ExternalContainerizer Subprocess use for non sandboxed invocations.

2014-05-22 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 817f6a8a3 - 1e8e63f33 Fixed ExternalContainerizer Subprocess use for non sandboxed invocations. When using Subprocess on non sandboxed invocations of the external containerizer program, stderr was not getting redirected at all, possibly

git commit: Fixed concurrent destroy invocations on the ExternalContainerizer.

2014-05-22 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1e8e63f33 - 0aa8ddd0c Fixed concurrent destroy invocations on the ExternalContainerizer. Review: https://reviews.apache.org/r/21680 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Fixed ExternalContainerizer wait behavior when getting destroyed.

2014-05-23 Thread tillt
to be enforced through terminating a task. +// TODO(tillt): Consider renaming 'killed' towards 'limited'. +termination.set_killed(false); +termination.set_message(); +termination.set_status(status.get()); +actives[containerId]-termination.set(termination

git commit: Added workaround to allow the ExternalContainerizer containers to get recovered via slave state.

2014-05-25 Thread tillt
recovery, we need to + // checkpoint one. See MESOS-1328 and MESOS-923. + // TODO(tillt): Remove this entirely as soon as MESOS-923 is fixed. + if (checkpoint) { +const string path = slave::paths::getForkedPidPath( +slave::paths::getMetaRootDir(flags.work_dir), +slaveId

git commit: Fixed MesosContainerizerExecuteTest.IoRedirection for OSX.

2014-05-27 Thread tillt
Repository: mesos Updated Branches: refs/heads/master ac5059bbe - a3170e0a9 Fixed MesosContainerizerExecuteTest.IoRedirection for OSX. Review: https://reviews.apache.org/r/21833 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Fixed missing cloexec and switched to io::redirect in MesosContainerizer.

2014-05-28 Thread tillt
+ // in the executor work directory, chown'ing them if a user is + // specified. + // TODO(tillt): Consider adding O_CLOEXEC for atomic close-on-exec. + // TODO(tillt): Consider adding an overload to io::redirect + // that accepts a file path as 'to' for further reducing code. We + // would however also

git commit: Fixed ExternalContainerizer fd leak and premature close.

2014-05-28 Thread tillt
( // file in the executor work directory, chown'ing it if a user is // specified. When no sandbox is given, redirect to /dev/null to // prevent blocking on the subprocess side. + // TODO(tillt): Consider switching to atomic close-on-exec instead. Tryint err = os::open( sandbox.isSome

git commit: Fixed python egg proto imports.

2014-09-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 63ed98634 - f57a1756c Fixed python egg proto imports. Fixes defective import introduced by the flat folder hierachy of the mesos.interface Python egg generation. Review: https://reviews.apache.org/r/25334 Project:

git commit: Added --modules flag for Mesos slave.

2014-10-15 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 6e1041704 - a41661420 Added --modules flag for Mesos slave. Review: https://reviews.apache.org/r/26509 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a4166142 Tree:

git commit: Added module loading support for local clusters.

2014-10-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 3c01efd9a - 8bf7e726e Added module loading support for local clusters. Frameworks triggering a local cluster (--master=local) now have module loading support via slave and master flags (--modules). Review:

git commit: Fix Libprocess benchmark OSX

2014-10-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 8bf7e726e - 68d6b5e32 Fix Libprocess benchmark OSX pipe2 does not work on osx. Replace pipe2 with a helper function that sets up the pipes using pipe() and then stout/os::cloexec(). Review: https://reviews.apache.org/r/27116 Project:

git commit: Added support for module-specific command-line parameters.

2014-10-27 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1ff259e96 - 17ecc0c0c Added support for module-specific command-line parameters. The Modules protobuf is enhanced to support key-value parameters based on mesos::Parameter and mesos::Parameters. Bumped Module API version since we modified

git commit: Fixed test namespace setter compilation exclusion on OSX.

2014-10-31 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 7c11f31ed - 8b93e9aaa Fixed test namespace setter compilation exclusion on OSX. Review: https://reviews.apache.org/r/27395 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Updated Modules protobuf to simplify JSON parsing.

2014-11-03 Thread tillt
Repository: mesos Updated Branches: refs/heads/master a425e0037 - 0abfbd48b Updated Modules protobuf to simplify JSON parsing. Updates the --modules help messages accordingly. Review: https://reviews.apache.org/r/27481 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Updated --isolation help message for slave.

2014-11-03 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 0abfbd48b - 19b202732 Updated --isolation help message for slave. Now also mentions the --modules flag. Review: https://reviews.apache.org/r/27560 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

git commit: Added External Containerizer documentation.

2014-11-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 0e2301e0f - 0f348c411 Added External Containerizer documentation. Adds a markdown document describing the ExternalContainerizer. Review: https://reviews.apache.org/r/22169/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo

mesos git commit: Fixed Authenticator SASL auxiliary memory access.

2014-11-07 Thread tillt
@@ void Master::initialize() } // Store credentials in master to use them in routes. credentials = _credentials.get(); + +// Give Authenticator access to credentials. +// TODO(tillt): Move this into a mechanism (module) specific +// Authenticator factory. See MESOS-2050

mesos git commit: Fixed invalid characters in external-containerizer.md

2014-11-07 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 084b0b700 - 36fd0111e Fixed invalid characters in external-containerizer.md Review: https://reviews.apache.org/r/27724 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Fix compilation error for Socket on older linux + OSX.

2014-11-17 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 59215ad57 - 4913b8697 Fix compilation error for Socket on older linux + OSX. Test whether SOCK_NONBLOCK and SOCK_CLOEXEC are defined to use single system call to create socket. Otherwise use os::nonblock and os::cloexec after creating the

[1/2] mesos git commit: Modified mesos configure.ac to set $with_svn to `brew --prefix subversion` for OS X.

2014-12-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 45b8f20fc - e6be44560 Modified mesos configure.ac to set $with_svn to `brew --prefix subversion` for OS X. Review: https://reviews.apache.org/r/28721 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Extended error message for module manager when library loading fails.

2014-12-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f8fc9d0a9 - a33f1f9ae Extended error message for module manager when library loading fails. Review: https://reviews.apache.org/r/28764 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Revert Revised authenticator interface to allow for two fold implementations.

2015-01-14 Thread tillt
, ,); if (authenticatorNames.empty()) { @@ -347,44 +330,25 @@ void Master::initialize() (see --modules); } - // TODO(tillt): Allow multiple authenticators to be loaded and enable - // the authenticatee to select the appropriate one. See MESOS-1939. - if (authenticatorNames[0

mesos git commit: Added instructions for ClangFormat installation and editor integration.

2015-01-21 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 34e2a4b7a - 0566c4509 Added instructions for ClangFormat installation and editor integration. Review: https://reviews.apache.org/r/29233 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Added apr-utils-devel to CentOS setup intructions.

2015-02-16 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 033c06211 - 765fd7f9b Added apr-utils-devel to CentOS setup intructions. Review: https://reviews.apache.org/r/30840 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Fixed unused comparisons on the == operator for TaskStatus.

2015-03-13 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 949f3cedd - b010e2297 Fixed unused comparisons on the == operator for TaskStatus. Commit 8385bba added a comparison operator which added a ; instead of ignoring most of the expression creating an expression result unused when compiling

mesos git commit: Fixed broken build due to re-introducing internal namespace.

2015-02-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f8b0c00b9 - 550dd7922 Fixed broken build due to re-introducing internal namespace. Part of it had to do with the introduction of anonymous modules that happened in parallel to the introduction of internal namespace, hence the internal

mesos git commit: Added 403 forbidden to the set of http Responses.

2015-02-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 550dd7922 - 2bf284fce Added 403 forbidden to the set of http Responses. Adds a class representing the 403 Forbidden http response message. Review: https://reviews.apache.org/r/30994 Project:

[2/2] mesos git commit: Added anonymous module example and tests.

2015-02-22 Thread tillt
= $(MESOS_CPPFLAGS) +libtestanonymous_la_LDFLAGS = $(MESOS_MODULE_LDFLAGS) + # Library containing the test CRAM-MD5 authentication modules. # TODO(tillt): Add cyrus-sasl2 dependency while removing it from libmesos. # TODO(tillt): Enable optional building of this module library. @@ -1300,6 +1307,7

[1/2] mesos git commit: Introduced anonymous modules.

2015-02-22 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 336997936 - 7ee3b7b67 Introduced anonymous modules. New kind of module that does __not__ receive any callbacks but simply coexists with its parent (OS-)process. Unlike other named modules, an anonymous module does not directly replace or

[1/2] mesos git commit: Added operator to stout::flags.

2015-03-27 Thread tillt
Repository: mesos Updated Branches: refs/heads/master c6643f71c - 04f8302c0 Added operator to stout::flags. Review: https://reviews.apache.org/r/32105 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/6a342297 Tree:

[2/2] mesos git commit: Added flags to logs at master and slave startup.

2015-03-27 Thread tillt
Added flags to logs at master and slave startup. Review: https://reviews.apache.org/r/30931 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/04f8302c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/04f8302c Diff:

mesos git commit: Added validations performed in the MesosExecutorDriver to the Slave.

2015-03-25 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 212b88c4d - 63a7a7928 Added validations performed in the MesosExecutorDriver to the Slave. Copies validations made to the messages exchanged between the slave and the `MesosExecutorDriver` and performed in the executor driver to the slave.

[1/2] mesos git commit: Added a not equal operator for JSON objects.

2015-05-07 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 89969592a - da0880035 Added a not equal operator for JSON objects. For consistency, adds a non equal operator to the JSON objects. It also adds tests to the equality operators. Review: https://reviews.apache.org/r/32198 Project:

mesos git commit: Fixed style error with template definitions within common/parse.hpp.

2015-05-08 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 72c1fb3c2 - 07fcee234 Fixed style error with template definitions within common/parse.hpp. Replaces every instance of `template` with `template ` in src/common/parse.hpp. Review: https://reviews.apache.org/r/33733 Project:

mesos git commit: Fixed a formatting issue in process/http.hpp.

2015-05-18 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 7326f888f - 2c320eee9 Fixed a formatting issue in process/http.hpp. Review: https://reviews.apache.org/r/34353 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/3] mesos git commit: libprocess: Placed noreturn attribute correctly for C11.

2015-04-16 Thread tillt
libprocess: Placed noreturn attribute correctly for C11. Places bundled libev noreturn attribute correctly for C11. The bundled libev uses different noreturn attributes based on whether it is compiled with C11 or not. The C11 codepath places the noreturn attribute in an incorrect (but accepted

[1/3] mesos git commit: Added -Wno-unused-local-typedef for clang 3.6.

2015-04-16 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1f97b2844 - f6620f851 Added -Wno-unused-local-typedef for clang 3.6. Review: https://reviews.apache.org/r/32749 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[2/3] mesos git commit: libprocess: Added -Wno-unused-local-typedef for clang 3.6

2015-04-16 Thread tillt
libprocess: Added -Wno-unused-local-typedef for clang 3.6 Review: https://reviews.apache.org/r/32748 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/06dd75ce Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/06dd75ce

mesos git commit: Added test for CRAM-MD5 support of SASL within configuration phase.

2015-04-16 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f6620f851 - 25844c57b Added test for CRAM-MD5 support of SASL within configuration phase. Review: https://reviews.apache.org/r/30263 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Cleaned up style and comments in modules.

2015-04-11 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1b5851a8c - a50674edc Cleaned up style and comments in modules. Fixing minor style issues in modules and some misleading comments. Review: https://reviews.apache.org/r/32967 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo

mesos git commit: Added support for Solaris within stout.

2015-06-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 482a944b3 - c0b32fc71 Added support for Solaris within stout. Review: https://reviews.apache.org/r/34268 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/c0b32fc7

[2/2] mesos git commit: Added a flag which controls libprocess firewall initialzation.

2015-06-08 Thread tillt
Added a flag which controls libprocess firewall initialzation. Review: https://reviews.apache.org/r/33296 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3ef08faf Tree:

[1/2] mesos git commit: Added firewall mechanism to control access on libprocess http endpoints.

2015-06-08 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 18c4a3aaf - 3ef08fafd Added firewall mechanism to control access on libprocess http endpoints. Introduces the interface `FirewallRule` which will be matched against incoming connections in order to allow them to be served or being blocked.

mesos git commit: Added file headers section to the C++ style guide.

2015-06-04 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 9f91651ba - c3a815ce8 Added file headers section to the C++ style guide. Review: https://reviews.apache.org/r/1 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Moved implementation of StatusUpdateStream to a compilation unit.

2015-06-04 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f8dc08206 - 9f91651ba Moved implementation of StatusUpdateStream to a compilation unit. Review: https://reviews.apache.org/r/33358 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Updated containerizer to statically initialize isolator factories.

2015-06-22 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 441dd02cd - b9b9035c0 Updated containerizer to statically initialize isolator factories. Replaces dynamic hashmap creation with c++11's static initialization. Review: https://reviews.apache.org/r/35544 Project:

mesos git commit: Fixed style issue in getting-started guide.

2015-06-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 0f5fed7a5 - 06af7a322 Fixed style issue in getting-started guide. Review: https://reviews.apache.org/r/35785 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/06af7a32

mesos git commit: Fixed post-reviews.py hanging bug.

2015-06-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1a82a3fb2 - 406d72ed0 Fixed post-reviews.py hanging bug. If you're not logged into ReviewBoard and run `post-reviews.py` the script hangs when trying to create a diff. After pressing enter, if you're not logged in, you get the following

mesos git commit: Fixed a typo in the docker ontainerizer guide.

2015-06-25 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 46dc9979e - 05ea6bc1e Fixed a typo in the docker ontainerizer guide. Review: https://reviews.apache.org/r/35863 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Updated post-reviews.py to print parent diff only if one exists.

2015-06-24 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 3de248615 - 870ee5d69 Updated post-reviews.py to print parent diff only if one exists. Makes the `... with parent diff created from:` show up only if such parent diff exists. Review: https://reviews.apache.org/r/35772 Project:

mesos git commit: Fixed typo in getting started guide.

2015-06-24 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f16d73852 - 3de248615 Fixed typo in getting started guide. Review: https://reviews.apache.org/r/35848 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/3de24861 Tree:

[2/2] mesos git commit: Fixed some nits in libprocess firewall initialization.

2015-06-24 Thread tillt
Fixed some nits in libprocess firewall initialization. Review: https://reviews.apache.org/r/35354 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b6187a3b Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/b6187a3b

mesos git commit: Really removed stout/memory.hpp from stout.

2015-06-22 Thread tillt
Repository: mesos Updated Branches: refs/heads/master e098cfff1 - a649a146e Really removed stout/memory.hpp from stout. Turns out only the references to `stout/memory.hpp` were removed in https://reviews.apache.org/r/33564/. Review: https://reviews.apache.org/r/35722 Project:

[1/2] mesos git commit: Fixed some nits in libprocess firewall.

2015-06-24 Thread tillt
Repository: mesos Updated Branches: refs/heads/master d86341b21 - b6187a3b2 Fixed some nits in libprocess firewall. Review: https://reviews.apache.org/r/35353 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/70dfe873

[6/8] mesos git commit: Removed libgen.h include.

2015-06-24 Thread tillt
Removed libgen.h include. Removes scattered includes of 'libgen.h'. Review: https://reviews.apache.org/r/35773 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/2510c529 Tree:

[8/8] mesos git commit: Removed libgen.h includes.

2015-06-24 Thread tillt
Removed libgen.h includes. Review: https://reviews.apache.org/r/35775 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/8bc1893f Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/8bc1893f Diff:

[1/8] mesos git commit: Added Path::dirname() and Path::basename().

2015-06-24 Thread tillt
Repository: mesos Updated Branches: refs/heads/master ca30a421c - 8bc1893f2 Added Path::dirname() and Path::basename(). Introducing Path::dirname() and Path::basename() as a thread safe replacement of the respective system functions. Also contains new tests covering corner cases. Review:

[5/8] mesos git commit: Removed os::dirname and os::basename.

2015-06-24 Thread tillt
Removed os::dirname and os::basename. os::dirname and os::basename were not thread safe on OSX. Replacements are Path::dirname and Path::basename. Review: https://reviews.apache.org/r/34258 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[3/8] mesos git commit: Replaced os::dirname and os::basename with Path::dirname and Path::basename.

2015-06-24 Thread tillt
Replaced os::dirname and os::basename with Path::dirname and Path::basename. Review: https://reviews.apache.org/r/34259 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e2988c4d Tree:

[2/8] mesos git commit: Replaced os::dirname and os::basename with Path::dirname and Path::basename.

2015-06-24 Thread tillt
Replaced os::dirname and os::basename with Path::dirname and Path::basename. Review: https://reviews.apache.org/r/35131 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/067079a8 Tree:

mesos git commit: Fixed const'ness of flags::load.

2015-06-26 Thread tillt
Repository: mesos Updated Branches: refs/heads/master b0beb5b4a - 299b082f9 Fixed const'ness of flags::load. Replacing argument arrays with static initializers in tests. Making the argument 'argv' const in load method to reflect the semantics. Review: https://reviews.apache.org/r/35743

mesos git commit: Removed use of namespace aliases.

2015-06-15 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 70035aad2 - 2b4fb8356 Removed use of namespace aliases. Review: https://reviews.apache.org/r/34375 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/2b4fb835 Tree:

mesos git commit: Fixed typos in stout README.

2015-06-15 Thread tillt
Repository: mesos Updated Branches: refs/heads/master e35909e47 - b592510ed Fixed typos in stout README. Review: https://reviews.apache.org/r/35463 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b592510e Tree:

mesos git commit: Fixed style problem in TODO.

2015-07-06 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 20903089b - 20cae7c96 Fixed style problem in TODO. Fixes commit 920930f which introduced a TODO comment which breaks the style checker. Review: https://reviews.apache.org/r/36202 Project:

mesos git commit: Updated FirewallRule interface so is consistent with http::Response usage in the project.

2015-07-06 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 20cae7c96 - e9eb5bb4f Updated FirewallRule interface so is consistent with http::Response usage in the project. In order to re-create consistency, the return value of `FirewallRule::apply()` is being updated towards returning a copy of

[2/2] mesos git commit: Fixed flaky ExamplesTest.JavaFramework.

2015-08-16 Thread tillt
Fixed flaky ExamplesTest.JavaFramework. Review: https://reviews.apache.org/r/37415 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7e631d61 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7e631d61 Diff:

[1/2] mesos git commit: Fixed flaky ExamplesTest.JavaLog.

2015-08-16 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 9b78b3014 - 7e631d612 Fixed flaky ExamplesTest.JavaLog. Review: https://reviews.apache.org/r/37414 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/554bd8d9 Tree:

mesos git commit: Marked Path::basename and Path::dirname as being const.

2015-07-29 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 54e4b - 3eb17f6cc Marked Path::basename and Path::dirname as being const. Review: https://reviews.apache.org/r/36914 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Fixed a typo in the oversubscription documentation.

2015-07-28 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f23f4d892 - f68661e75 Fixed a typo in the oversubscription documentation. Review: https://reviews.apache.org/r/36883 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Removed unnecessary using directive.

2015-08-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master efc3e47d7 - e488e6dd3 Removed unnecessary using directive. Review: https://reviews.apache.org/r/36911 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/e488e6dd Tree:

mesos git commit: Patched configure.ac to include $LIBS in the CRAM-MD5 check.

2015-08-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master e488e6dd3 - 7148db0c8 Patched configure.ac to include $LIBS in the CRAM-MD5 check. Adds $LIBS to build path of the CRAM-MD5 test. See MESOS-3170. Review: https://reviews.apache.org/r/36910 Project:

mesos git commit: Doxygenified a comment in allocator.proto.

2015-08-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master b426d5adc - 9f13e14b7 Doxygenified a comment in allocator.proto. Review: https://reviews.apache.org/r/36916 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/9f13e14b

[1/3] mesos git commit: Added test authorizer module.

2015-08-13 Thread tillt
Repository: mesos Updated Branches: refs/heads/master dedd1ed69 - 7c96affbd Added test authorizer module. Adds a test authorizer module. Updates the authorization tests in order to perform typed tests on the default authorizer implementation and on the test authorizer module. Review:

[3/3] mesos git commit: Updated authorizer to allow for modularized implementations.

2015-08-13 Thread tillt
Updated authorizer to allow for modularized implementations. Splits and updates the original declaration of the `Authorizer` into its interface and a default implementation, the `LocalAuthorizer`. Following the pattern of the modularized `Authenticator`, it generates a default constructor which

[2/3] mesos git commit: Added support for modularized authorizers.

2015-08-13 Thread tillt
Added support for modularized authorizers. Adds and integrates helper classes needed to support an `Authorizer` module. Also adds a flag to the master, allowing the selection of an `Authorizer` module. Review: https://reviews.apache.org/r/36049 Project:

mesos git commit: Updated python CLI package to get properly installed via setup.py.

2015-08-13 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 2a391e803 - 52b9c0bec Updated python CLI package to get properly installed via setup.py. Review: https://reviews.apache.org/r/36819 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/2] mesos git commit: mesos: Enabled automake maintainer mode.

2015-08-10 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 9d4ac11ed - da37f81ba mesos: Enabled automake maintainer mode. Review: https://reviews.apache.org/r/37221 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/1e497484

[2/2] mesos git commit: libprocess: Enabled automake maintainer mode.

2015-08-10 Thread tillt
libprocess: Enabled automake maintainer mode. Review: https://reviews.apache.org/r/37222 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/da37f81b Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/da37f81b Diff:

[1/3] mesos git commit: stout: Fixed break before braces style for 'enum'.

2015-08-10 Thread tillt
Repository: mesos Updated Branches: refs/heads/master a51a53ddb - 9d4ac11ed stout: Fixed break before braces style for 'enum'. Instances in `3rdparty/libprocess/3rdparty/stout/tests/protobuf_tests.pb.cc` and `3rdparty/libprocess/3rdparty/stout/tests/protobuf_tests.pb.h` are unchanged since

mesos git commit: Fixed an incorrect signed vs. unsigned comparison.

2015-08-14 Thread tillt
Repository: mesos Updated Branches: refs/heads/master b39e59183 - d7e0c41df Fixed an incorrect signed vs. unsigned comparison. Fixes compiling with GCC 5.1.1 which failed because of a comparison between `int` and `unsigned int` in `scheduler/scheduler.cpp`. Review:

mesos git commit: Added prevention of deprecation warnings around SASL invocations on OS X.

2015-10-23 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 0e667af39 -> c7d1e8055 Added prevention of deprecation warnings around SASL invocations on OS X. Review: https://reviews.apache.org/r/39230 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

mesos git commit: Removed unused checks in command executor.

2015-11-10 Thread tillt
Repository: mesos Updated Branches: refs/heads/master f6f8050d1 -> b6d4b28a4 Removed unused checks in command executor. Review: https://reviews.apache.org/r/40107 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/b6d4b28a

mesos git commit: Corrected include order for gtest and gmock.

2015-11-10 Thread tillt
Repository: mesos Updated Branches: refs/heads/master aa0cd7ed4 -> 91bef10e5 Corrected include order for gtest and gmock. Review: https://reviews.apache.org/r/40142 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

svn commit: r11164 - in /dev/mesos/0.26.0-rc1: ./ mesos-0.26.0.tar.gz mesos-0.26.0.tar.gz.asc mesos-0.26.0.tar.gz.md5

2015-11-12 Thread tillt
Author: tillt Date: Thu Nov 12 19:13:45 2015 New Revision: 11164 Log: Adding mesos-0.26.0-rc1. Added: dev/mesos/0.26.0-rc1/ dev/mesos/0.26.0-rc1/mesos-0.26.0.tar.gz (with props) dev/mesos/0.26.0-rc1/mesos-0.26.0.tar.gz.asc dev/mesos/0.26.0-rc1/mesos-0.26.0.tar.gz.md5 Added

svn commit: r11152 - /release/mesos/KEYS

2015-11-11 Thread tillt
Author: tillt Date: Thu Nov 12 01:47:55 2015 New Revision: 11152 Log: Added new key for Till Toenshoff. Modified: release/mesos/KEYS Modified: release/mesos/KEYS == --- release/mesos/KEYS (original) +++ release

Git Push Summary

2015-11-12 Thread tillt
Repository: mesos Updated Tags: refs/tags/0.26.0-rc1 [created] 9965e96b6

[3/3] mesos git commit: Stout: Corrected style of Makefiles.

2015-11-07 Thread tillt
Stout: Corrected style of Makefiles. This is not a full standartization of Makefile format, however, it is a step towards consistency. This patch focuses mainly on the order of files and corrects obvious issues. These are guidelines behind the change: - Files in the same folder should appear in

[1/3] mesos git commit: Mesos: Corrected style of Makefiles.

2015-11-07 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 16baf38f3 -> 288e77032 Mesos: Corrected style of Makefiles. This is not a full standartization of Makefile format, however, it is a step towards consistency. This patch focuses mainly on the order of files and corrects obvious issues.

[2/3] mesos git commit: Libprocess: Corrected style of Makefiles.

2015-11-07 Thread tillt
Libprocess: Corrected style of Makefiles. This is not a full standartization of Makefile format, however, it is a step towards consistency. This patch focuses mainly on the order of files and corrects obvious issues. These are guidelines behind the change: - Files in the same folder should

mesos git commit: Fixed Slave::shutdown logging.

2015-11-07 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1d178c2d1 -> a20f9e9e8 Fixed Slave::shutdown logging. Checks message.empty() in Slave::shutdown before logging it. Review: https://reviews.apache.org/r/39507 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/2] mesos git commit: Fixed libprocess protobuf library detection.

2015-11-05 Thread tillt
Repository: mesos Updated Branches: refs/heads/master b10c9590a -> 73cd79584 Fixed libprocess protobuf library detection. Review: https://reviews.apache.org/r/39774 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[2/2] mesos git commit: Fixed Mesos protobuf library detection.

2015-11-05 Thread tillt
Fixed Mesos protobuf library detection. Review: https://reviews.apache.org/r/39775 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/73cd7958 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/73cd7958 Diff:

mesos git commit: Added a missing include to the Makefile.

2015-11-06 Thread tillt
Repository: mesos Updated Branches: refs/heads/master ea2e57b56 -> ed6aad76a Added a missing include to the Makefile. This fixes failing `make distcheck`. Review: https://reviews.apache.org/r/40023 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit:

[1/2] mesos git commit: Added stream manipulators for the Time object.

2015-07-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 9987b4652 - d0300e1a4 Added stream manipulators for the Time object. Adds some manipulator classes which allows formatting Time objects to ostreams. Review: https://reviews.apache.org/r/34703 Project:

[2/2] mesos git commit: Added support for cache control in libprocess when dealing with static files.

2015-07-09 Thread tillt
Added support for cache control in libprocess when dealing with static files. When serving a static file, libprocess returns the header `Last-Modified` which is used by browsers to control Cache. When a http request arrives containing the header `If-Modified-Since`, a response `304 Not Modified`

mesos git commit: Made post-reviews.py handle bad (or not) ReviewBoard URLs.

2015-07-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master d0300e1a4 - a221abc2a Made post-reviews.py handle bad (or not) ReviewBoard URLs. Handles the case where the ReviewBoard URL is invalid. af081a07234794f60a2575e0383ce537d7111c18 - Fixed post-reviews.py hanging bug. (29 seconds ago)

mesos git commit: Set refuse seconds on the correct filter in reservation test.

2015-07-07 Thread tillt
Repository: mesos Updated Branches: refs/heads/master dde28e88e - 5ff52b6b8 Set refuse seconds on the correct filter in reservation test. `set_refuse_seconds` should have been called on `filtersForever` rather than `filters`. Review: https://reviews.apache.org/r/35703 Project:

mesos git commit: Reverted commit for HTTP caching of static assets.

2015-07-09 Thread tillt
Repository: mesos Updated Branches: refs/heads/master 1e54a761c - dab0977d2 Reverted commit for HTTP caching of static assets. This reverts commit d0300e1a47d1ba5d6714957fc258ab125fd53ed1. We identified several issues in this implementation and the most important one is described by

svn commit: r11338 - in /dev/mesos/0.26.0-rc2: ./ mesos-0.26.0.tar.gz mesos-0.26.0.tar.gz.asc mesos-0.26.0.tar.gz.md5

2015-11-27 Thread tillt
Author: tillt Date: Fri Nov 27 17:58:15 2015 New Revision: 11338 Log: Adding mesos-0.26.0-rc2. Added: dev/mesos/0.26.0-rc2/ dev/mesos/0.26.0-rc2/mesos-0.26.0.tar.gz (with props) dev/mesos/0.26.0-rc2/mesos-0.26.0.tar.gz.asc dev/mesos/0.26.0-rc2/mesos-0.26.0.tar.gz.md5 Added

Git Push Summary

2015-11-27 Thread tillt
Repository: mesos Updated Tags: refs/tags/0.26.0-rc2 [created] 36e8e07d7

  1   2   3   4   5   6   >