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:
2768eb2
)
THRIFT-2609 TFileTransport.h unused field warning (clang 3.4)
author
Roger Meier
<roger@apache.org>
Mon, 7 Jul 2014 20:02:57 +0000
(22:02 +0200)
committer
Roger Meier
<roger@apache.org>
Mon, 7 Jul 2014 20:02:57 +0000
(22:02 +0200)
Patch: Konrad Grochowski
lib/cpp/src/thrift/transport/TFileTransport.cpp
patch
|
blob
|
history
diff --git
a/lib/cpp/src/thrift/transport/TFileTransport.cpp
b/lib/cpp/src/thrift/transport/TFileTransport.cpp
index
c267f2e
..
625c877
100644
(file)
--- a/
lib/cpp/src/thrift/transport/TFileTransport.cpp
+++ b/
lib/cpp/src/thrift/transport/TFileTransport.cpp
@@
-751,7
+751,7
@@
void TFileTransport::performRecovery() {
// if tailing the file, wait until there is enough data to start
// the next chunk
while(curChunk == (getNumChunks() - 1)) {
- THRIFT_SLEEP_USEC(
DEFAULT_CORRUPTED_SLEEP_TIME_US
);
+ THRIFT_SLEEP_USEC(
corruptedEventSleepTime_
);
}
seekToChunk(curChunk + 1);
} else {