Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.15.0
-
None
-
None
Description
We would expect these two operations to behave the same:
Future<T> f = p->foo();
f.discard(); // Discards the future returned by foo().
Future<T> f = dispatch(p, P::foo);
f.discard(); // Currently, this will not discard the future returned by
// foo(), only discards the dispatch promise's future.
Attachments
Issue Links
- is depended upon by
-
MESOS-736 Support catch-up replicated log
- Resolved