HBASE-13732 TestHBaseFsck#testParallelWithRetriesHbck fails intermittently (Stephen Yuan Jiang, ADDENDUM for failing tests)

This commit is contained in:
Enis Soztutar 2015-06-02 17:52:15 -07:00
parent ce636701ff
commit 4e5535a156
1 changed files with 1 additions and 1 deletions

View File

@ -432,7 +432,7 @@ public class HBaseFsck extends Configured implements Closeable {
"hbase.hbck.lockfile.maxwaittime", DEFAULT_WAIT_FOR_LOCK_TIMEOUT);
FSDataOutputStream stream = null;
try {
stream = futureTask.get(30, TimeUnit.SECONDS);
stream = futureTask.get(timeoutInSeconds, TimeUnit.SECONDS);
} catch (ExecutionException ee) {
LOG.warn("Encountered exception when opening lock file", ee);
} catch (InterruptedException ie) {