Skip to content

Commit

Permalink
More cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kfaraz committed Jul 17, 2024
1 parent fa17419 commit 6d36f87
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import org.apache.druid.indexing.common.task.NoopTaskContextEnricher;
import org.apache.druid.indexing.common.task.Task;
import org.apache.druid.indexing.common.task.TestAppenderatorsManager;
import org.apache.druid.indexing.overlord.RunnerFactory;
import org.apache.druid.indexing.overlord.Segments;
import org.apache.druid.indexing.overlord.TaskQueue;
import org.apache.druid.indexing.overlord.TaskRunner;
Expand Down Expand Up @@ -142,7 +141,7 @@ public void setup()
new TaskQueueConfig(null, new Period(0L), null, null, null, null),
new DefaultTaskConfig(),
getTaskStorage(),
RunnerFactory.of(taskRunner),
taskRunner,
taskActionClientFactory,
getLockbox(),
new NoopServiceEmitter(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
import org.apache.druid.indexing.common.task.NoopTaskContextEnricher;
import org.apache.druid.indexing.common.task.Task;
import org.apache.druid.indexing.common.task.TestAppenderatorsManager;
import org.apache.druid.indexing.overlord.RunnerFactory;
import org.apache.druid.indexing.overlord.SegmentPublishResult;
import org.apache.druid.indexing.overlord.Segments;
import org.apache.druid.indexing.overlord.TaskQueue;
Expand Down Expand Up @@ -155,7 +154,7 @@ public void setUpIngestionTestBase() throws IOException
new TaskQueueConfig(null, new Period(0L), null, null, null, null),
new DefaultTaskConfig(),
getTaskStorage(),
RunnerFactory.of(taskRunner),
taskRunner,
taskActionClientFactory,
getLockbox(),
new NoopServiceEmitter(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ private TaskQueue setUpTaskQueue(TaskStorage ts, TaskRunner tr) throws Exception
tqc,
new DefaultTaskConfig(),
ts,
RunnerFactory.of(tr),
tr,
tac,
taskLockbox,
emitter,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public boolean isForceTimeChunkLock()
queueConfig,
new DefaultTaskConfig(),
taskStorage,
RunnerFactory.of(taskRunner),
taskRunner,
actionClientFactory,
lockbox,
emitter,
Expand Down

0 comments on commit 6d36f87

Please sign in to comment.