From d4f016d523b37264822d044760637b2423b7c1d2 Mon Sep 17 00:00:00 2001 From: Luca Niccolini Date: Wed, 25 Oct 2017 14:28:42 -0700 Subject: [PATCH] rework reads/writes Summary: the current implementation had problems with scheduling reads and writes and it would sometimes get stuck when transfering large chunks of data here I am restructuring the code to look more like the one in HTTPSession session flow control is not implemented yet really, it's coming next Depends on: D6048238 Reviewed By: afrind Differential Revision: D6048238 fbshipit-source-id: ae601e771154a7f1a669a58a6e05c9e3720e7017 --- folly/io/async/EventBase.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/folly/io/async/EventBase.cpp b/folly/io/async/EventBase.cpp index 352e41f5..b0e1eda6 100644 --- a/folly/io/async/EventBase.cpp +++ b/folly/io/async/EventBase.cpp @@ -553,7 +553,6 @@ bool EventBase::runInEventBaseThread(Func fn) { if (inRunningEventBaseThread()) { runInLoop(std::move(fn)); return true; - } try { -- 2.34.1