This is an automated email from the ASF dual-hosted git repository.

gilbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git.


    from 2ecbe56  Updated 1.8.1 CHANGELOG to its final form.
     new bf01659  Added `PendingFutureTracker` class for tracking pending 
futures.
     new 5112ab8  Added `IsolatorTracker` for tracking calls of isolator 
methods.
     new c3964a8  Wrapped isolators in `IsolatorTracker`.
     new 5e01feb  Added `LauncherTracker` for tracking calls of launcher 
methods.
     new 59c2c75  Wrapped launcher in `LauncherTracker`.
     new 9604977  Added `/containerizer/debug` endpoint.
     new f3b827f  Implemented `FutureTrackTest` tests.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/authorization.md                              |   1 +
 src/CMakeLists.txt                                 |   2 +
 src/Makefile.am                                    |   6 +
 src/common/authorization.cpp                       |   1 +
 src/common/future_tracker.hpp                      | 159 +++++++++++++++++++++
 src/local/local.cpp                                |   1 +
 src/slave/constants.hpp                            |   3 +
 src/slave/containerizer/containerizer.cpp          |  13 +-
 src/slave/containerizer/containerizer.hpp          |   5 +-
 src/slave/containerizer/mesos/containerizer.cpp    |  49 +++++--
 src/slave/containerizer/mesos/containerizer.hpp    |   3 +-
 src/slave/containerizer/mesos/isolator_tracker.cpp | 152 ++++++++++++++++++++
 .../filesystem/posix.hpp => isolator_tracker.hpp}  |  65 ++++-----
 src/slave/containerizer/mesos/launcher_tracker.cpp | 109 ++++++++++++++
 .../{linux_launcher.hpp => launcher_tracker.hpp}   |  35 ++---
 src/slave/http.cpp                                 |  96 +++++++++++++
 src/slave/http.hpp                                 |   9 ++
 src/slave/main.cpp                                 |  13 +-
 src/slave/slave.cpp                                |  10 ++
 src/slave/slave.hpp                                |   3 +
 src/tests/CMakeLists.txt                           |   1 +
 src/tests/cluster.cpp                              |  12 +-
 src/tests/common/future_tracker_tests.cpp          | 148 +++++++++++++++++++
 src/tests/mock_slave.cpp                           |   2 +
 src/tests/mock_slave.hpp                           |   1 +
 25 files changed, 819 insertions(+), 80 deletions(-)
 create mode 100644 src/common/future_tracker.hpp
 create mode 100644 src/slave/containerizer/mesos/isolator_tracker.cpp
 copy src/slave/containerizer/mesos/{isolators/filesystem/posix.hpp => 
isolator_tracker.hpp} (59%)
 create mode 100644 src/slave/containerizer/mesos/launcher_tracker.cpp
 copy src/slave/containerizer/mesos/{linux_launcher.hpp => 
launcher_tracker.hpp} (68%)
 create mode 100644 src/tests/common/future_tracker_tests.cpp

Reply via email to