HBASE-3608 MemstoreFlusher error message doesnt include exception
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1079001 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
87a95ec3e1
commit
4573c829b4
|
@ -139,6 +139,7 @@ Release 0.90.2 - Unreleased
|
||||||
HBASE-3594 Rest server fails because of missing asm jar
|
HBASE-3594 Rest server fails because of missing asm jar
|
||||||
HBASE-3582 Allow HMaster and HRegionServer to login from keytab
|
HBASE-3582 Allow HMaster and HRegionServer to login from keytab
|
||||||
when on secure Hadoop
|
when on secure Hadoop
|
||||||
|
HBASE-3608 MemstoreFlusher error message doesnt include exception!
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3542 MultiGet methods in Thrift
|
HBASE-3542 MultiGet methods in Thrift
|
||||||
|
|
|
@ -239,7 +239,7 @@ class MemStoreFlusher extends Thread implements FlushRequester {
|
||||||
} catch (ConcurrentModificationException ex) {
|
} catch (ConcurrentModificationException ex) {
|
||||||
continue;
|
continue;
|
||||||
} catch (Exception ex) {
|
} catch (Exception ex) {
|
||||||
LOG.error("Cache flusher failed for entry " + fqe);
|
LOG.error("Cache flusher failed for entry " + fqe, ex);
|
||||||
if (!server.checkFileSystem()) {
|
if (!server.checkFileSystem()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue