THRIFT-1292. cpp: silence log spew from TThreadedServer
Patch: Adam Simpkins
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1161659 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/server/TThreadedServer.cpp b/lib/cpp/src/server/TThreadedServer.cpp
index 11718ca..b1ef1e0 100644
--- a/lib/cpp/src/server/TThreadedServer.cpp
+++ b/lib/cpp/src/server/TThreadedServer.cpp
@@ -71,8 +71,10 @@
}
}
} catch (TTransportException& ttx) {
- string errStr = string("TThreadedServer client died: ") + ttx.what();
- GlobalOutput(errStr.c_str());
+ if (ttx.getType() != TTransportException::END_OF_FILE) {
+ string errStr = string("TThreadedServer client died: ") + ttx.what();
+ GlobalOutput(errStr.c_str());
+ }
} catch (TException& x) {
string errStr = string("TThreadedServer exception: ") + x.what();
GlobalOutput(errStr.c_str());