THRIFT-1292. cpp: silence log spew from TThreadedServer
authorBryan Duxbury <bryanduxbury@apache.org>
Thu, 25 Aug 2011 17:30:21 +0000 (17:30 +0000)
committerBryan Duxbury <bryanduxbury@apache.org>
Thu, 25 Aug 2011 17:30:21 +0000 (17:30 +0000)
Patch: Adam Simpkins

git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@1161659 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/src/server/TThreadedServer.cpp

index 11718ca..b1ef1e0 100644 (file)
@@ -71,8 +71,10 @@ public:
         }
       }
     } 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());