Re: Review Request 72126: Added a test to ensure agents cannot be reactivated while DRAINING.

2020-02-25 Thread Joseph Wu
Lines 1109 (patched) <https://reviews.apache.org/r/72126/#comment307869> This agent is reachable right? It just doesn't have a cooperative executor. - Joseph Wu On Feb. 12, 2020, 7:16 p.m., Benjamin Mahler

Re: Review Request 72125: Disallow reactivating a DRAINING agent.

2020-02-25 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/72125/#review219659 --- Ship it! Ship It! - Joseph Wu On Feb. 12, 2020, 7:15 p.m

Re: Review Request 72124: Added logging of tasks and operations during agent drain initiation.

2020-02-25 Thread Joseph Wu
(Also, the DrainSlaveMessage would be sent when/if the agent comes back). - Joseph Wu On Feb. 12, 2020, 6:05 p.m., Benjamin Mahler wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://reviews.

Re: Review Request 72116: Fixed incorrect task count logging in master's agent draining logic.

2020-02-11 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/72116/#review219551 --- Ship it! Ship It! - Joseph Wu On Feb. 11, 2020, 12:54 p.m

Review Request 72014: SSL Socket: Moved accept callback logic into protected function.

2020-01-16 Thread Joseph Wu
/openssl_socket.hpp 2d0259d5fa20140c61bb2c699b69214d3e436e16 3rdparty/libprocess/src/ssl/openssl_socket.cpp 74f9fe2443efa37c0b6c7f77120b140f5ac0b53b Diff: https://reviews.apache.org/r/72014/diff/1/ Testing --- make check Thanks, Joseph Wu

Review Request 72016: Reverted SSL Socket guard against downgrade.

2020-01-16 Thread Joseph Wu
a6563fb50e4356e51e958d262979b7ed7221f028 Diff: https://reviews.apache.org/r/72016/diff/1/ Testing --- make check (two tests now fail) Thanks, Joseph Wu

Review Request 72017: SSL Socket: Added downgrade support.

2020-01-16 Thread Joseph Wu
to check for readable bytes. Diffs - 3rdparty/libprocess/src/ssl/openssl_socket.cpp 74f9fe2443efa37c0b6c7f77120b140f5ac0b53b Diff: https://reviews.apache.org/r/72017/diff/1/ Testing --- make check (tests enabled with the previous review now pass) Thanks, Joseph Wu

Review Request 72018: Windows: Excluded some unix socket code.

2020-01-16 Thread Joseph Wu
tests (Windows) Thanks, Joseph Wu

Review Request 71926: Libprocess: Autotools: Added USE_LIBEVENT definition.

2019-12-18 Thread Joseph Wu
--- Oops, I forgot to add this to the autotools build (which I don't run in development :( ) Thanks, Joseph Wu

Review Request 71927: Autotools: Added USE_LIBEVENT definition.

2019-12-18 Thread Joseph Wu
forgot to add this to the autotools build (which I don't run in development :( ) Thanks, Joseph Wu

Review Request 71923: SSL Socket: Guarded against downgrade while unimplemented.

2019-12-17 Thread Joseph Wu
--- cmake --build . --target check Thanks, Joseph Wu

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-16 Thread Joseph Wu
le this transparently for us, but a unit test would make sure of this. - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71666/#review219029 -------

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-16 Thread Joseph Wu
--build . --target libprocess-tests libprocess-tests ``` Running libprocess-tests yields: ``` [ FAILED ] SSLTest.ValidDowngrade [ FAILED ] SSLTest.ValidDowngradeEachProtocol ``` Thanks, Joseph Wu

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-12-16 Thread Joseph Wu
ening socket. - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71665/#review219009 --- On Dec. 16, 2019, 1:58 p.m., Joseph

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-12-16 Thread Joseph Wu
SERT_SOME(client); AWAIT_ASSERT_READY(client->connect( network::inet::Address(net::IP::parse("216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-12-16 Thread Joseph Wu
: https://reviews.apache.org/r/71664/diff/5/ Changes: https://reviews.apache.org/r/71664/diff/4-5/ Testing --- cmake --build . --target process A tiny bit of testing next patch. Thanks, Joseph Wu

Re: Review Request 71790: SSL Socket: Implemented sendfile.

2019-12-10 Thread Joseph Wu
-tests Thanks, Joseph Wu

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-10 Thread Joseph Wu
--- ``` cmake --build . --target libprocess-tests libprocess-tests ``` Running libprocess-tests yields: ``` [ FAILED ] SSLTest.ValidDowngrade [ FAILED ] SSLTest.ValidDowngradeEachProtocol ``` Thanks, Joseph Wu

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-12-10 Thread Joseph Wu
ate_path().string()} }); Try client = Socket::create(SocketImpl::Kind::SSL); ASSERT_SOME(client); AWAIT_ASSERT_READY(client->connect( network::inet::Address(net::IP::parse("216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-12-10 Thread Joseph Wu
(updated) - 3rdparty/libprocess/src/ssl/openssl_socket.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71664/diff/4/ Changes: https://reviews.apache.org/r/71664/diff/3-4/ Testing --- cmake --build . --target process A tiny bit of testing next patch. Thanks, Joseph Wu

Re: Review Request 71660: SSL Wrapper: Stubbed out a SSL socket class.

2019-12-10 Thread Joseph Wu
/openssl_socket.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71660/diff/4/ Changes: https://reviews.apache.org/r/71660/diff/3-4/ Testing --- cmake .. -ENABLE_SSL=1 # No Libevent here! Thanks, Joseph Wu

Re: Review Request 71661: Added missing header guards for poll_socket.hpp.

2019-12-10 Thread Joseph Wu
881dab1da4f8dfa7826d82398a989fd23cc2262e Diff: https://reviews.apache.org/r/71661/diff/2/ Changes: https://reviews.apache.org/r/71661/diff/1-2/ Testing --- cmake --build . --target process Thanks, Joseph Wu

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-12-10 Thread Joseph Wu
automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71664/#review218800 ------- On Nov. 19, 2019, 12:16 p.m., Joseph Wu wrote: > > --- > Thi

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-09 Thread Joseph Wu
h dispatches and chained continuations, > > so we could also just use `dispatch()` directly instead of `loop()`, that > > might be the simplest thing to do. > > > > WDYT? > > Joseph Wu wrote: > I think a UPID/actor is required for any dispatching/

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-06 Thread Joseph Wu
h dispatches and chained continuations, > > so we could also just use `dispatch()` directly instead of `loop()`, that > > might be the simplest thing to do. > > > > WDYT? > > Joseph Wu wrote: > I think a UPID/actor is required for any dispatching/

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-12-05 Thread Joseph Wu
erated e-mail. To reply, visit: https://reviews.apache.org/r/71666/#review218948 --- On Nov. 19, 2019, 4:29 p.m., Joseph Wu wrote: > > --- > This is an automatically generated

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-12-04 Thread Joseph Wu
; > Why vlog this failure case but not the others? Should we have logging > > for all these cases, or none? This log was also copied from libevent. I can add more logging where it makes sense to. - Joseph --- This is

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-12-03 Thread Joseph Wu
omatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71664/#review218804 ------- On Nov. 19, 2019, 12:16 p.m., Joseph Wu wrote: > > --- > This is an automatically gen

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-11-19 Thread Joseph Wu
ke --build . --target libprocess-tests libprocess-tests ``` Running libprocess-tests yields: ``` [ FAILED ] SSLTest.ValidDowngrade [ FAILED ] SSLTest.ValidDowngradeEachProtocol ``` Thanks, Joseph Wu

Re: Review Request 71790: SSL Socket: Implemented sendfile.

2019-11-19 Thread Joseph Wu
libprocess-tests libprocess-tests Thanks, Joseph Wu

Review Request 71790: SSL Socket: Implemented sendfile.

2019-11-19 Thread Joseph Wu
05dc5ec2fdc74a989689e4378bef775bcf2b7a87 Diff: https://reviews.apache.org/r/71790/diff/1/ Testing --- cmake --build . --target libprocess-tests libprocess-tests Thanks, Joseph Wu

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-11-19 Thread Joseph Wu
ads), so we need some guards here. - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71664/#review218661 -----------

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-11-19 Thread Joseph Wu
/src/ssl/socket_wrapper.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71664/diff/3/ Changes: https://reviews.apache.org/r/71664/diff/2-3/ Testing --- cmake --build . --target process A tiny bit of testing next patch. Thanks, Joseph Wu

Re: Review Request 71659: SSL Wrapper: Allowed SSL without libevent.

2019-11-19 Thread Joseph Wu
35b12ddedec6f85b75adefa80d38fa439cd6b2d3 Diff: https://reviews.apache.org/r/71659/diff/3/ Changes: https://reviews.apache.org/r/71659/diff/2-3/ Testing --- Requires a libprocess build change too (next patch). Thanks, Joseph Wu

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-11-13 Thread Joseph Wu
dparty/libprocess/src/ssl/socket_wrapper.cpp Lines 657-663 (patched) <https://reviews.apache.org/r/71666/#comment306401> Consider not blocking, but instead just trying to send the shutdown bits once. - Joseph Wu On Nov. 11, 2019, 11:41 a.m., Jos

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-11-13 Thread Joseph Wu
object used by libprocess instead. - Joseph Wu On Oct. 30, 2019, 6:29 p.m., Joseph Wu wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://re

Re: Review Request 71659: SSL Wrapper: Allowed SSL without libevent.

2019-11-13 Thread Joseph Wu
Diff: https://reviews.apache.org/r/71659/diff/2/ Changes: https://reviews.apache.org/r/71659/diff/1-2/ Testing --- Requires a libprocess build change too (next patch). Thanks, Joseph Wu

Re: Review Request 71660: SSL Wrapper: Stubbed out a SSL socket class.

2019-11-13 Thread Joseph Wu
://reviews.apache.org/r/71660/diff/3/ Changes: https://reviews.apache.org/r/71660/diff/2-3/ Testing --- cmake .. -ENABLE_SSL=1 # No Libevent here! Thanks, Joseph Wu

Review Request 71764: Autotools: Libprocess: Allowed SSL without libevent.

2019-11-13 Thread Joseph Wu
bfe94b185075c10d2202d0a11f1d0025d10f3fcf Diff: https://reviews.apache.org/r/71764/diff/1/ Testing --- TODO (I don't usually run the Autotools build) Thanks, Joseph Wu

Re: Review Request 71660: SSL Wrapper: Stubbed out a SSL socket class.

2019-11-11 Thread Joseph Wu
s useful for all the areas that use Socket objects. This obstraction lets us parameterize tons of our tests for SSL and non-SSL. - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71660/#review

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-11-11 Thread Joseph Wu
GetParam() = "SSL" [ FAILED ] Encryption/NetSocketTest.EOFAfterRecv/0, where GetParam() = "SSL" ``` Thanks, Joseph Wu

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-11-11 Thread Joseph Wu
quot;216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-11-05 Thread Joseph Wu
[ FAILED ] Encryption/NetSocketTest.EOFBeforeRecv/0, where GetParam() = "SSL" [ FAILED ] Encryption/NetSocketTest.EOFAfterRecv/0, where GetParam() = "SSL" ``` Thanks, Joseph Wu

Re: Review Request 71666: SSL Wrapper: Implemented send/recv and shutdown.

2019-11-05 Thread Joseph Wu
dDowngrade [ FAILED ] SSLTest.ValidDowngradeEachProtocol [ FAILED ] SSLTest.ShutdownThenSend ``` Thanks, Joseph Wu

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-11-05 Thread Joseph Wu
quot;216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Re: Review Request 71666: WIP: SSL Wrapper: Implemented send/recv and shutdown.

2019-10-30 Thread Joseph Wu
indefinitely) [ FAILED ] SSLTest.ValidDowngrade [ FAILED ] SSLTest.ValidDowngradeEachProtocol [ FAILED ] SSLTest.ShutdownThenSend ``` Thanks, Joseph Wu

Re: Review Request 71665: SSL Wrapper: Implemented socket connection and handshake.

2019-10-30 Thread Joseph Wu
); AWAIT_ASSERT_READY(client->connect( network::inet::Address(net::IP::parse("216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Re: Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-10-30 Thread Joseph Wu
://reviews.apache.org/r/71664/diff/1-2/ Testing --- cmake --build . --target process A tiny bit of testing next patch. Thanks, Joseph Wu

Re: Review Request 71660: SSL Wrapper: Stubbed out a SSL socket class.

2019-10-23 Thread Joseph Wu
/2/ Changes: https://reviews.apache.org/r/71660/diff/1-2/ Testing --- cmake .. -ENABLE_SSL=1 # No Libevent here! Thanks, Joseph Wu

Review Request 71666: WIP: SSL Wrapper: Implemented send/recv and shutdown.

2019-10-23 Thread Joseph Wu
response = http::get(url); AWAIT_READY(response); EXPECT_EQ(http::Status::OK, response->code); ``` Thanks, Joseph Wu

Review Request 71665: SSL Wrapper: Implemented client connection and handshake.

2019-10-23 Thread Joseph Wu
client = Socket::create(SocketImpl::Kind::SSL); ASSERT_SOME(client); AWAIT_ASSERT_READY(client->connect( network::inet::Address(net::IP::parse("216.58.194.206").get(), 443), openssl::create_tls_client_config(None(; ``` Thanks, Joseph Wu

Review Request 71664: SSL Wrapper: Implemented BIO for SSL socket wrapper.

2019-10-23 Thread Joseph Wu
A tiny bit of testing next patch. Thanks, Joseph Wu

Review Request 71660: SSL Wrapper: Stubbed out a SSL socket class.

2019-10-23 Thread Joseph Wu
/socket_wrapper.hpp PRE-CREATION 3rdparty/libprocess/src/ssl/socket_wrapper.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71660/diff/1/ Testing --- cmake .. -ENABLE_SSL=1 # No Libevent here! Thanks, Joseph Wu

Review Request 71661: Added missing header guards for poll_socket.hpp.

2019-10-23 Thread Joseph Wu
--- cmake --build . --target process Thanks, Joseph Wu

Review Request 71663: SSL Wrapper: Windows: Made sure windows.hpp is included before OpenSSL.

2019-10-23 Thread Joseph Wu
lities.cpp c4a8ab4f83939554ca3eb7b4eb86c42c8a539b48 Diff: https://reviews.apache.org/r/71663/diff/1/ Testing --- cmake --build . (Windows) Thanks, Joseph Wu

Review Request 71662: SSL Wrapper: Windows: Guarded the SSL-only connect method.

2019-10-23 Thread Joseph Wu
/windows/poll_socket.cpp e2a84694ac554b4c23242fd93d93800c0334a943 Diff: https://reviews.apache.org/r/71662/diff/1/ Testing --- cmake --build . --target process (Windows) Thanks, Joseph Wu

Review Request 71659: SSL Wrapper: Allowed SSL without libevent.

2019-10-23 Thread Joseph Wu
35b12ddedec6f85b75adefa80d38fa439cd6b2d3 Diff: https://reviews.apache.org/r/71659/diff/1/ Testing --- Requires a libprocess build change too (next patch). Thanks, Joseph Wu

Re: Review Request 71535: Fixed certificate write functions for windows.

2019-09-24 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71535/#review217931 --- Ship it! Ship It! - Joseph Wu On Sept. 23, 2019, 5:41 p.m

Re: Review Request 71520: Fixed inefficient `hashmap` access patterns.

2019-09-19 Thread Joseph Wu
of the commit description s/completely in lie of/completely in lieu of/ The typo is also present in the next review ;) - Joseph Wu On Sept. 19, 2019, 6:44 a.m., Benjamin Bannier wrote: > > --- > This is an automatically generated e-mail.

Re: Review Request 71511: Windows: Stout: Fixed parallel test execution.

2019-09-19 Thread Joseph Wu
pdated) - 3rdparty/stout/tests/CMakeLists.txt e3291c72d1875f5b196dd5ea2ba20e7d53881b87 Diff: https://reviews.apache.org/r/71511/diff/2/ Changes: https://reviews.apache.org/r/71511/diff/1-2/ Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Re: Review Request 71512: Windows: Libprocess: Fixed parallel test execution.

2019-09-19 Thread Joseph Wu
pdated) - 3rdparty/libprocess/src/tests/CMakeLists.txt b4ec9907d16c89b45562f4fa33c9f3d2913f6991 Diff: https://reviews.apache.org/r/71512/diff/2/ Changes: https://reviews.apache.org/r/71512/diff/1-2/ Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Re: Review Request 71510: Windows: Fixed parallel test execution.

2019-09-19 Thread Joseph Wu
Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Re: Review Request 71510: Windows: Fixed parallel test execution.

2019-09-19 Thread Joseph Wu
adjusting the default for `WIN32` be possible? > > > > In any case not an important regression, feel free to drop. > > Joseph Wu wrote: > It should still be possible to override the `TEST_DRIVER` here. The > reason for the `TEST_RUNNER` temporary variable is t

Re: Review Request 71510: Windows: Fixed parallel test execution.

2019-09-19 Thread Joseph Wu
And I believe that was cmake extending the binary search path automatically. Note: On Windows, if you have an executable like `test.exe`, you can run it while omitting the `.exe`. - Joseph --- This is an automat

Review Request 71512: Windows: Libprocess: Fixed parallel test execution.

2019-09-18 Thread Joseph Wu
/71512/diff/1/ Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Review Request 71511: Windows: Stout: Fixed parallel test execution.

2019-09-18 Thread Joseph Wu
/ Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Review Request 71510: Windows: Fixed parallel test execution.

2019-09-18 Thread Joseph Wu
42 Diff: https://reviews.apache.org/r/71510/diff/1/ Testing --- cmake --build . --target check (Windows) Thanks, Joseph Wu

Review Request 71509: Windows: Fixed AllocationRoleEnvironmentVariable tests.

2019-09-18 Thread Joseph Wu
(Windows) Thanks, Joseph Wu

Re: Review Request 71507: Windows: Disabled the dist and distcheck targets with a note.

2019-09-18 Thread Joseph Wu
for the Windows build. Diffs (updated) - CMakeLists.txt a1ca5c28819b946b10a3533f4793896c676d4682 Diff: https://reviews.apache.org/r/71507/diff/2/ Changes: https://reviews.apache.org/r/71507/diff/1-2/ Testing --- cmake --build . --target dist Thanks, Joseph Wu

Re: Review Request 71507: Windows: Disabled the dist and distcheck targets with a note.

2019-09-18 Thread Joseph Wu
il. To reply, visit: https://reviews.apache.org/r/71507/#review217830 ------- On Sept. 18, 2019, 12:26 p.m., Joseph Wu wrote: > > --- > This is an automat

Review Request 71507: Windows: Disable the dist and distcheck targets with a note.

2019-09-18 Thread Joseph Wu
a1ca5c28819b946b10a3533f4793896c676d4682 Diff: https://reviews.apache.org/r/71507/diff/1/ Testing --- cmake --build . --target dist Thanks, Joseph Wu

Review Request 71481: Added some extra ASSERTs to a role test.

2019-09-12 Thread Joseph Wu
d6cc31bf89954c5a440142b378560cdc0286df23 Diff: https://reviews.apache.org/r/71481/diff/1/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71480: Fixed a bug for non-partition-aware schedulers.

2019-09-12 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71480/#review217713 --- Ship it! Ship It! - Joseph Wu On Sept. 12, 2019, 4:18 p.m

Review Request 71478: Windows: Moved definition out of inline function call.

2019-09-12 Thread Joseph Wu
://reviews.apache.org/r/71478/diff/1/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71405: Updated docs for the AGENT_DRAINING capability.

2019-08-29 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71405/#review217496 --- Ship it! Ship It! - Joseph Wu On Aug. 29, 2019, 5 a.m

Review Request 71378: Added node draining to 1.9.0 CHANGELOG.

2019-08-27 Thread Joseph Wu
: mesos Description --- Added node draining to 1.9.0 CHANGELOG. Diffs - CHANGELOG 1c631978385925433e12f8854c47b6f4056cb577 Diff: https://reviews.apache.org/r/71378/diff/1/ Testing --- Thanks, Joseph Wu

Re: Review Request 65112: Added documentation about standalone containers.

2019-08-27 Thread Joseph Wu
docs/home.md ad19919ffc268d050976a926387ad55bea9be2f7 docs/standalone-containers.md PRE-CREATION Diff: https://reviews.apache.org/r/65112/diff/2/ Changes: https://reviews.apache.org/r/65112/diff/1-2/ Testing --- Previewed the docs via the website generator. Thanks, Joseph Wu

Re: Review Request 71209: Enabled a number of additional pre-commit checks.

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71209/#review217466 --- Ship it! Ship It! - Joseph Wu On Aug. 27, 2019, 12:57 a.m

Re: Review Request 71208: Revert "Updated cpplint to be compatible with Python 3."

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71208/#review217465 --- Ship it! Ship It! - Joseph Wu On July 30, 2019, 2:01 p.m

Re: Review Request 71207: Revert "Updated cpplint.py to be less verbose when there is no linting issue."

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71207/#review217464 --- Ship it! Ship It! - Joseph Wu On Aug. 20, 2019, 4:49 a.m

Re: Review Request 71206: Removed old mesos-style and references.

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71206/#review217463 --- Ship it! Ship It! - Joseph Wu On Aug. 20, 2019, 4:49 a.m

Re: Review Request 71205: Switched commit hooks to pre-commit.

2019-08-27 Thread Joseph Wu
) <https://reviews.apache.org/r/71205/#comment304726> s/mlink/mklink/ - Joseph Wu On Aug. 27, 2019, 1:08 a.m., Benjamin Bannier wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://

Re: Review Request 71203: Added check script to check for license headers.

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71203/#review217462 --- Ship it! Ship It! - Joseph Wu On Aug. 19, 2019, 12:20 a.m

Re: Review Request 71299: Added separate script to install developer setup.

2019-08-27 Thread Joseph Wu
--- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71299/#review217460 --- Ship it! Ship It! - Joseph Wu On Aug. 20, 2019, 4:48 a.m

Re: Review Request 71204: Added gitlint config.

2019-08-27 Thread Joseph Wu
t/gitlint Lines 35-48 (patched) <https://reviews.apache.org/r/71204/#comment304725> Do we need these chunks? - Joseph Wu On Aug. 14, 2019, 4:24 a.m., Benjamin Bannier wrote: > > --- > This is an automatically generated

Re: Review Request 70096: Moved cpplint configuration into dedicated file.

2019-08-27 Thread Joseph Wu
tps://reviews.apache.org/r/70096/#comment304721> s/mlink/mklink/ - Joseph Wu On Aug. 14, 2019, 4:25 a.m., Benjamin Bannier wrote: > > --- > This is an automatically generated e-mail. To reply, visit: > https://reviews.

Re: Review Request 71318: Added agent reactivations to the existing agent draining tests.

2019-08-23 Thread Joseph Wu
/master_draining_tests.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71318/diff/4/ Changes: https://reviews.apache.org/r/71318/diff/3-4/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71316: Added draining tests for empty agents.

2019-08-23 Thread Joseph Wu
Thanks, Joseph Wu

Re: Review Request 71317: Added draining test for momentarily disconnected agents.

2019-08-23 Thread Joseph Wu
/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71317: Added draining test for momentarily disconnected agents.

2019-08-22 Thread Joseph Wu
/diff/1-2/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71316: Added draining tests for empty agents.

2019-08-22 Thread Joseph Wu
rkSlaveUnreachable). - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/71316/#review217362 --- On Aug. 22, 2019, 11:3

Re: Review Request 71316: Added draining tests for empty agents.

2019-08-22 Thread Joseph Wu
PRE-CREATION Diff: https://reviews.apache.org/r/71316/diff/2/ Changes: https://reviews.apache.org/r/71316/diff/1-2/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71315: Refactored master draining test setup.

2019-08-22 Thread Joseph Wu
before. Diffs (updated) - src/tests/master_draining_tests.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71315/diff/2/ Changes: https://reviews.apache.org/r/71315/diff/1-2/ Testing --- make check Thanks, Joseph Wu

Re: Review Request 71315: Refactored master draining test setup.

2019-08-21 Thread Joseph Wu
ts mean we'll be serializing the agent draining protobufs to/from JSON. Most of these protobufs are not used anywhere else too. - Joseph --- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org

Re: Review Request 71318: Added agent reactivations to the existing agent draining tests.

2019-08-20 Thread Joseph Wu
/ Testing --- make check Thanks, Joseph Wu

Review Request 71318: Added agent reactivations to the existing agent draining tests.

2019-08-19 Thread Joseph Wu
/71318/diff/1/ Testing --- make check Thanks, Joseph Wu

Review Request 71317: Added draining test for momentarily disconnected agents.

2019-08-19 Thread Joseph Wu
/master_draining_tests.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71317/diff/1/ Testing --- make check Thanks, Joseph Wu

Review Request 71316: Added draining tests for empty agents.

2019-08-19 Thread Joseph Wu
-CREATION Diff: https://reviews.apache.org/r/71316/diff/1/ Testing --- make check Thanks, Joseph Wu

Review Request 71315: Refactored master draining test setup.

2019-08-19 Thread Joseph Wu
/diff/1/ Testing --- make check Thanks, Joseph Wu

Review Request 71314: Moved master-side agent draining tests into a separate file.

2019-08-19 Thread Joseph Wu
src/tests/api_tests.cpp e202cd330d424efef783d39b74db5f856bd34895 src/tests/master_draining_tests.cpp PRE-CREATION Diff: https://reviews.apache.org/r/71314/diff/1/ Testing --- make check Thanks, Joseph Wu

  1   2   3   4   5   6   7   8   9   10   >