1
0
mirror of synced 2025-04-21 22:25:55 +03:00

Removed is_handling_requests

This commit is contained in:
yhirose 2018-04-17 13:06:35 -04:00
parent 84e31bdfd4
commit bc051219f9
2 changed files with 0 additions and 3 deletions

View File

@ -209,8 +209,6 @@ public:
bool is_running() const; bool is_running() const;
void stop(); void stop();
bool is_handling_requests() const;
protected: protected:
bool process_request(Stream& strm, bool last_connection); bool process_request(Stream& strm, bool last_connection);

View File

@ -365,7 +365,6 @@ protected:
virtual void TearDown() { virtual void TearDown() {
svr_.stop(); svr_.stop();
t_.join(); t_.join();
EXPECT_EQ(false, svr_.is_handling_requests());
} }
map<string, string> persons_; map<string, string> persons_;