> On May 9, 2016, 11:12 a.m., Alexander Rukletsov wrote: > > src/master/http.cpp, line 879 > > <https://reviews.apache.org/r/46784/diff/3/?file=1369724#file1369724line879> > > > > In r/46203/ you've cached flags and passed them into continuation. Here > > you call `master->flags` in the continuation. Why is the approach different > > to the one for the agent? > > Jan Schlicht wrote: > See [MESOS-5293](https://issues.apache.org/jira/browse/MESOS-5293). > tldr; We can do it for the master, but (currently) not for the agent. > > Alexander Rukletsov wrote: > But it does not prevent us from following the pattern we used in the > agent here, right?
No, it doesn't. But it's the pattern we used in the agent that's the outlier here. In other cases we are able to access `this` in the continuation and make use of it. IMO this is the pattern we should prefer: Having a non-static continuation, that can access `this` and its members and change the continuation in `Slave::Http` to that pattern as soon as MESOS-5293 is resolved. - Jan ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/46784/#review132228 ----------------------------------------------------------- On May 3, 2016, 2:42 p.m., Jan Schlicht wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviews.apache.org/r/46784/ > ----------------------------------------------------------- > > (Updated May 3, 2016, 2:42 p.m.) > > > Review request for mesos, Alexander Rukletsov and Benjamin Bannier. > > > Bugs: MESOS-5297 > https://issues.apache.org/jira/browse/MESOS-5297 > > > Repository: mesos > > > Description > ------- > > Access to the '/flags' endpoint is authorized using > the 'GET_ENDPOINT_WITH_PATH' action. > > > Diffs > ----- > > src/master/http.cpp 4985f24b70a00116caa4bd0335ea51e55d878d19 > src/master/master.hpp 3e55114ee7866e06513071e86e15608099dae052 > src/tests/master_authorization_tests.cpp > 804b39a269c09df9f6c0bbdf6f8b53921ac09ce8 > > Diff: https://reviews.apache.org/r/46784/diff/ > > > Testing > ------- > > make check > > > Thanks, > > Jan Schlicht > >