summaryrefslogtreecommitdiff
path: root/lib/cpp/src/thrift/transport
diff options
context:
space:
mode:
authorRoger Meier <roger@apache.org>2014-07-07 22:02:57 +0200
committerRoger Meier <roger@apache.org>2014-07-07 22:02:57 +0200
commit5f61d29a26b7d3988c0ca7ec3bbac160c0cb7511 (patch)
tree39c82fa5e1164a7ae02bfcb18bbc1e2f08ca5947 /lib/cpp/src/thrift/transport
parent2768eb29cebf22f4b225654f61ed1806e0cabb85 (diff)
downloadthrift-5f61d29a26b7d3988c0ca7ec3bbac160c0cb7511.tar.gz
THRIFT-2609 TFileTransport.h unused field warning (clang 3.4)
Patch: Konrad Grochowski
Diffstat (limited to 'lib/cpp/src/thrift/transport')
-rw-r--r--lib/cpp/src/thrift/transport/TFileTransport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cpp/src/thrift/transport/TFileTransport.cpp b/lib/cpp/src/thrift/transport/TFileTransport.cpp
index c267f2ead..625c8778c 100644
--- 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 {