maytasm commented on a change in pull request #9644: Add API to trigger a 
compaction by the coordinator for integration tests
URL: https://github.com/apache/druid/pull/9644#discussion_r406606594
 
 

 ##########
 File path: 
server/src/main/java/org/apache/druid/server/coordinator/DruidCoordinator.java
 ##########
 @@ -621,13 +628,20 @@ private void stopBeingLeader()
     return ImmutableList.copyOf(duties);
   }
 
-  public class DutiesRunnable implements Runnable
+  private List<CoordinatorDuty> makeCompactSegmentsDuty()
+  {
+    List<CoordinatorDuty> duties = new ArrayList<>();
+    duties.add(compactSegments);
+    return ImmutableList.copyOf(duties);
 
 Review comment:
   Done

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@druid.apache.org
For additional commands, e-mail: commits-h...@druid.apache.org

Reply via email to