You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@mesos.apache.org by Benjamin Hindman <be...@berkeley.edu> on 2017/09/09 05:40:04 UTC

Review Request 62203: Use a `process::Executor` to ensure safety of asynchronous callbacks.

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/62203/
-----------------------------------------------------------

Review request for mesos, Anand Mazumdar, Benjamin Mahler, and Vinod Kone.


Repository: mesos


Description
-------

When passing callbacks to `scheduler::Mesos` and `executor::Mesos`
from the tests `TestMesos` it's possible that we'll invoke those
callbacks erroneously after we've destructed `TestMesos` because the
callbacks are executed asynchronously. By using a `process::Executor`
we can guarantee that after `TestMesos` is destroyed (and thereby the
`process::Executor` instance is destroyed) we won't execute the
callbacks.


Diffs
-----

  src/tests/mesos.hpp 444c75763aea995708db0b17eafee2d22c912554 


Diff: https://reviews.apache.org/r/62203/diff/1/


Testing
-------

make check


Thanks,

Benjamin Hindman


Re: Review Request 62203: Use a `process::Executor` to ensure safety of asynchronous callbacks.

Posted by Mesos Reviewbot Windows <re...@mesos.apache.org>.
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/62203/#review185048
-----------------------------------------------------------



FAIL: Some Mesos tests failed. Please check http://dcos-win.westus.cloudapp.azure.com/mesos-build/review/62203/logs/mesos-tests-stdout.log and http://dcos-win.westus.cloudapp.azure.com/mesos-build/review/62203/logs/mesos-tests-stderr.log for any relevant errors

Reviews applied: [62203]

Logs available here: http://dcos-win.westus.cloudapp.azure.com/mesos-build/review/62203/logs

- Mesos Reviewbot Windows


On Sept. 9, 2017, 5:40 a.m., Benjamin Hindman wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/62203/
> -----------------------------------------------------------
> 
> (Updated Sept. 9, 2017, 5:40 a.m.)
> 
> 
> Review request for mesos, Anand Mazumdar, Benjamin Mahler, and Vinod Kone.
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> When passing callbacks to `scheduler::Mesos` and `executor::Mesos`
> from the tests `TestMesos` it's possible that we'll invoke those
> callbacks erroneously after we've destructed `TestMesos` because the
> callbacks are executed asynchronously. By using a `process::Executor`
> we can guarantee that after `TestMesos` is destroyed (and thereby the
> `process::Executor` instance is destroyed) we won't execute the
> callbacks.
> 
> 
> Diffs
> -----
> 
>   src/tests/mesos.hpp 444c75763aea995708db0b17eafee2d22c912554 
> 
> 
> Diff: https://reviews.apache.org/r/62203/diff/1/
> 
> 
> Testing
> -------
> 
> make check
> 
> 
> Thanks,
> 
> Benjamin Hindman
> 
>