HDDS-1389. Fix testSCMChillModeRestrictedOp. (#696)
This commit is contained in:
parent
89f9c8604b
commit
5750bb94ed
|
@ -88,16 +88,25 @@ public class ChillModeHandler implements EventHandler<ChillModeStatus> {
|
||||||
@Override
|
@Override
|
||||||
public void onMessage(ChillModeStatus chillModeStatus,
|
public void onMessage(ChillModeStatus chillModeStatus,
|
||||||
EventPublisher publisher) {
|
EventPublisher publisher) {
|
||||||
try {
|
|
||||||
isInChillMode.set(chillModeStatus.getChillModeStatus());
|
isInChillMode.set(chillModeStatus.getChillModeStatus());
|
||||||
scmClientProtocolServer.setChillModeStatus(isInChillMode.get());
|
scmClientProtocolServer.setChillModeStatus(isInChillMode.get());
|
||||||
scmBlockManager.setChillModeStatus(isInChillMode.get());
|
scmBlockManager.setChillModeStatus(isInChillMode.get());
|
||||||
Thread.sleep(waitTime);
|
|
||||||
} catch (InterruptedException e) {
|
if (!isInChillMode.get()) {
|
||||||
Thread.currentThread().interrupt();
|
final Thread chillModeExitThread = new Thread(() -> {
|
||||||
} finally {
|
try {
|
||||||
replicationManager.start();
|
Thread.sleep(waitTime);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
}
|
||||||
|
replicationManager.start();
|
||||||
|
});
|
||||||
|
|
||||||
|
chillModeExitThread.setDaemon(true);
|
||||||
|
chillModeExitThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean getChillModeStatus() {
|
public boolean getChillModeStatus() {
|
||||||
|
|
Loading…
Reference in New Issue