HDDS-1331. In DatanodeStateMachine join check for not null.

This commit is contained in:
Bharat Viswanadham 2019-03-23 09:43:49 -07:00 committed by GitHub
parent 6a34c9bb29
commit 128dd91e10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -363,8 +363,13 @@ public void triggerHeartbeat() {
* @throws InterruptedException * @throws InterruptedException
*/ */
public void join() throws InterruptedException { public void join() throws InterruptedException {
stateMachineThread.join(); if (stateMachineThread != null) {
cmdProcessThread.join(); stateMachineThread.join();
}
if (cmdProcessThread != null) {
cmdProcessThread.join();
}
} }
/** /**