Repository: mesos Updated Branches: refs/heads/master f59e969a7 -> 7b83081c6
Updated a TODO on http::Pipe to reflect that it is now implemented. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/7b83081c Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/7b83081c Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/7b83081c Branch: refs/heads/master Commit: 7b83081c685576492384f3308521500b54b4916e Parents: f59e969 Author: Benjamin Mahler <[email protected]> Authored: Fri Aug 7 13:06:18 2015 -0700 Committer: Benjamin Mahler <[email protected]> Committed: Fri Aug 7 13:06:18 2015 -0700 ---------------------------------------------------------------------- 3rdparty/libprocess/include/process/http.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/7b83081c/3rdparty/libprocess/include/process/http.hpp ---------------------------------------------------------------------- diff --git a/3rdparty/libprocess/include/process/http.hpp b/3rdparty/libprocess/include/process/http.hpp index f24ca24..04c2274 100644 --- a/3rdparty/libprocess/include/process/http.hpp +++ b/3rdparty/libprocess/include/process/http.hpp @@ -143,11 +143,11 @@ struct Request // reader must "keep up" with the writer in order to avoid // unbounded memory growth. // -// TODO(bmahler): The writer needs to be able to induce a failure -// on the reader to signal an error has occurred. For example, if -// we are receiving a response but a disconnection occurs before -// the response is completed, we want the reader to detect that a -// disconnection occurred! +// The writer can induce a failure on the reader in order to signal +// that an error has occurred. For example, if we are receiving a +// response but a disconnection occurs before the response is +// completed, we want the reader to detect that a disconnection +// occurred! // // TODO(bmahler): Consider aggregating writes into larger reads to // help the reader keep up (a process::Stream abstraction with
