From 5f61d29a26b7d3988c0ca7ec3bbac160c0cb7511 Mon Sep 17 00:00:00 2001 From: Roger Meier Date: Mon, 7 Jul 2014 22:02:57 +0200 Subject: [PATCH] THRIFT-2609 TFileTransport.h unused field warning (clang 3.4) Patch: Konrad Grochowski --- lib/cpp/src/thrift/transport/TFileTransport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cpp/src/thrift/transport/TFileTransport.cpp b/lib/cpp/src/thrift/transport/TFileTransport.cpp index c267f2ea..625c8778 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 { -- 2.17.1