HBASE-971 Fix the failing tests on Hudson
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@709170 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aeda522393
commit
ac1074b8ce
|
@ -52,6 +52,7 @@ Release 0.19.0 - Unreleased
|
||||||
not extend it to provided optional HLog sync operations.
|
not extend it to provided optional HLog sync operations.
|
||||||
HBASE-970 Update the copy/rename scripts to go against change API
|
HBASE-970 Update the copy/rename scripts to go against change API
|
||||||
HBASE-966 HBASE-748 misses some writes
|
HBASE-966 HBASE-748 misses some writes
|
||||||
|
HBASE-971 Fix the failing tests on Hudson
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-901 Add a limit to key length, check key and value length on client side
|
HBASE-901 Add a limit to key length, check key and value length on client side
|
||||||
|
|
|
@ -424,6 +424,12 @@ public class HRegionServer implements HConstants, HRegionInterface, Runnable {
|
||||||
LOG.error("Exceeded max retries: " + this.numRetries, e);
|
LOG.error("Exceeded max retries: " + this.numRetries, e);
|
||||||
checkFileSystem();
|
checkFileSystem();
|
||||||
}
|
}
|
||||||
|
if (this.stopRequested.get()) {
|
||||||
|
LOG.info("Stop was requested, clearing the toDo " +
|
||||||
|
"despite of the exception");
|
||||||
|
toDo.clear();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Do some housekeeping before going to sleep
|
// Do some housekeeping before going to sleep
|
||||||
|
|
Loading…
Reference in New Issue