HADOOP-16013. DecayRpcScheduler decay thread should run as a daemon. Contributed by Erik Krogen.

This commit is contained in:
Chen Liang 2019-01-11 12:51:07 -08:00
parent fb8932a727
commit 01cb958af4
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ public class DecayRpcScheduler implements RpcScheduler,
"the number of top users for scheduler metrics must be at least 1");
// Setup delay timer
Timer timer = new Timer();
Timer timer = new Timer(true);
DecayTask task = new DecayTask(this, timer);
timer.scheduleAtFixedRate(task, decayPeriodMillis, decayPeriodMillis);