Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
neha-ellur committed Jan 8, 2025
1 parent d435068 commit 2a95606
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@
import org.apache.druid.indexing.common.LockGranularity;
import org.apache.druid.indexing.common.TaskLock;
import org.apache.druid.indexing.common.TaskLockType;
import org.apache.druid.indexing.common.actions.*;
import org.apache.druid.indexing.common.actions.LockListAction;
import org.apache.druid.indexing.common.actions.LockReleaseAction;
import org.apache.druid.indexing.common.actions.MarkSegmentsAsUnusedAction;
import org.apache.druid.indexing.common.actions.SegmentAllocateAction;
import org.apache.druid.indexing.common.actions.SegmentTransactionalAppendAction;
import org.apache.druid.indexing.common.actions.SegmentTransactionalInsertAction;
import org.apache.druid.indexing.common.actions.SegmentTransactionalReplaceAction;
import org.apache.druid.indexing.common.actions.TaskAction;
import org.apache.druid.indexing.common.actions.TaskActionClient;
import org.apache.druid.indexing.common.task.Tasks;
import org.apache.druid.indexing.common.task.batch.TooManyBucketsException;
import org.apache.druid.indexing.common.task.batch.parallel.TombstoneHelper;
Expand Down Expand Up @@ -2162,7 +2170,7 @@ static void performSegmentPublish(
* preempted. Uses string comparison, because the relevant Overlord APIs do not have a more reliable way of
* discerning the cause of errors.
* <p>
* Error strings are taken from {@link TaskLocks}
* Error strings are taken from {@link org.apache.druid.indexing.common.actions.TaskLocks}
* and {@link SegmentAllocateAction}.
*/
private static boolean isTaskLockPreemptedException(Exception e)
Expand Down

0 comments on commit 2a95606

Please sign in to comment.