mirror of https://github.com/apache/druid.git
Remove comments
This commit is contained in:
parent
92d5c250ab
commit
9400c473a8
|
@ -79,12 +79,12 @@ public class TaskQueue
|
|||
private final Condition managementMayBeNecessary = giant.newCondition();
|
||||
private final ExecutorService managerExec = Executors.newSingleThreadExecutor(
|
||||
new ThreadFactoryBuilder()
|
||||
.setDaemon(false) // Don't use Execs because of this
|
||||
.setDaemon(false)
|
||||
.setNameFormat("TaskQueue-Manager").build()
|
||||
);
|
||||
private final ScheduledExecutorService storageSyncExec = Executors.newSingleThreadScheduledExecutor(
|
||||
new ThreadFactoryBuilder()
|
||||
.setDaemon(false) // Don't use Execs because of this
|
||||
.setDaemon(false)
|
||||
.setNameFormat("TaskQueue-StorageSync").build()
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue