HBASE-15261 Make Throwable t in DaughterOpener volatile (Huaxiang Sun)

This commit is contained in:
stack 2016-03-07 16:34:11 -08:00
parent 0f14856b01
commit d15ae0e6ab
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ public class SplitTransactionImpl implements SplitTransaction {
private class DaughterOpener extends HasThread {
private final Server server;
private final Region r;
private Throwable t = null;
private volatile Throwable t = null;
DaughterOpener(final Server s, final Region r) {
super((s == null? "null-services": s.getServerName()) +