Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
9837aaf
)
Fix a compile bug introduced by r702644
author
David Reiss
<dreiss@apache.org>
Tue, 7 Oct 2008 23:55:24 +0000
(23:55 +0000)
committer
David Reiss
<dreiss@apache.org>
Tue, 7 Oct 2008 23:55:24 +0000
(23:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@702672
13f79535
-47bb-0310-9956-
ffa450edef68
lib/cpp/src/server/TNonblockingServer.cpp
patch
|
blob
|
history
diff --git
a/lib/cpp/src/server/TNonblockingServer.cpp
b/lib/cpp/src/server/TNonblockingServer.cpp
index
c0be8ef
..
06f11aa
100644
(file)
--- a/
lib/cpp/src/server/TNonblockingServer.cpp
+++ b/
lib/cpp/src/server/TNonblockingServer.cpp
@@
-258,7
+258,7
@@
void TConnection::transition() {
server_->addTask(task);
} catch (IllegalStateException & ise) {
// The ThreadManager is not ready to handle any more tasks (it's probably shutting down).
- GlobalOutput.printf(
stderr,
"IllegalStateException: Server::process() %s", ise.what());
+ GlobalOutput.printf("IllegalStateException: Server::process() %s", ise.what());
close();
}