From: Dave Watson Date: Thu, 23 Oct 2014 22:21:23 +0000 (-0700) Subject: Remove some leftover apache paths X-Git-Tag: v0.22.0~244 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4a29942efa3e2af4c28084a02d7ab913a092aeec;p=folly.git Remove some leftover apache paths Summary: EventBaseManager was moved to folly, we shouldn't have deps on apache Test Plan: fbconfig -r folly/experimental/wangle/concurrency; fbmake runtests Reviewed By: hans@fb.com Subscribers: doug, fugalh, njormrod, folly-diffs@ FB internal diff: D1636006 --- diff --git a/folly/experimental/wangle/concurrent/IOThreadPoolExecutor.cpp b/folly/experimental/wangle/concurrent/IOThreadPoolExecutor.cpp index a58b3f44..f0a1b492 100644 --- a/folly/experimental/wangle/concurrent/IOThreadPoolExecutor.cpp +++ b/folly/experimental/wangle/concurrent/IOThreadPoolExecutor.cpp @@ -18,7 +18,7 @@ #include #include -#include +#include namespace folly { namespace wangle { @@ -72,7 +72,7 @@ IOThreadPoolExecutor::makeThread() { void IOThreadPoolExecutor::threadRun(ThreadPtr thread) { const auto ioThread = std::static_pointer_cast(thread); ioThread->eventBase = - apache::thrift::async::TEventBaseManager::get()->getEventBase(); + folly::EventBaseManager::get()->getEventBase(); thread->startupBaton.post(); while (ioThread->shouldRun) { ioThread->eventBase->loopForever();