Amend HBASE-10338 Fix NPE if the server is terminated before the RegionServerCoprocessorHost is initialized (Vandana Ayyalasomayajula)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1560494 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ca59922702
commit
6cc0c86133
|
@ -1734,7 +1734,9 @@ public class HRegionServer implements ClientProtos.ClientService.BlockingInterfa
|
||||||
@Override
|
@Override
|
||||||
public void stop(final String msg) {
|
public void stop(final String msg) {
|
||||||
try {
|
try {
|
||||||
|
if (this.rsHost != null) {
|
||||||
this.rsHost.preStop(msg);
|
this.rsHost.preStop(msg);
|
||||||
|
}
|
||||||
this.stopped = true;
|
this.stopped = true;
|
||||||
LOG.info("STOPPED: " + msg);
|
LOG.info("STOPPED: " + msg);
|
||||||
// Wakes run() if it is sleeping
|
// Wakes run() if it is sleeping
|
||||||
|
|
Loading…
Reference in New Issue