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:57:30 -08:00
parent 1684301485
commit 1dbe6c9780
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,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);