HDFS-11932. BPServiceActor thread name is not correctly set. Contributed by Chen Liang.
This commit is contained in:
parent
1e52314117
commit
226688a12c
@ -187,8 +187,8 @@ String getBlockPoolId() {
|
|||||||
if (bpNSInfo != null) {
|
if (bpNSInfo != null) {
|
||||||
return bpNSInfo.getBlockPoolID();
|
return bpNSInfo.getBlockPoolID();
|
||||||
} else {
|
} else {
|
||||||
LOG.warn("Block pool ID needed, but service not yet registered with NN",
|
LOG.warn("Block pool ID needed, but service not yet registered with " +
|
||||||
new Exception("trace"));
|
"NN, trace:", new Exception());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -541,7 +541,7 @@ void start() {
|
|||||||
//Thread is started already
|
//Thread is started already
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
bpThread = new Thread(this, formatThreadName("heartbeating", nnAddr));
|
bpThread = new Thread(this);
|
||||||
bpThread.setDaemon(true); // needed for JUnit testing
|
bpThread.setDaemon(true); // needed for JUnit testing
|
||||||
bpThread.start();
|
bpThread.start();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user