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:
Jean-Daniel Cryans 2008-10-30 14:28:49 +00:00
parent aeda522393
commit ac1074b8ce
2 changed files with 7 additions and 0 deletions

View File

@ -52,6 +52,7 @@ Release 0.19.0 - Unreleased
not extend it to provided optional HLog sync operations.
HBASE-970 Update the copy/rename scripts to go against change API
HBASE-966 HBASE-748 misses some writes
HBASE-971 Fix the failing tests on Hudson
IMPROVEMENTS
HBASE-901 Add a limit to key length, check key and value length on client side

View File

@ -424,6 +424,12 @@ public class HRegionServer implements HConstants, HRegionInterface, Runnable {
LOG.error("Exceeded max retries: " + this.numRetries, e);
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