Skip to content

Commit

Permalink
Update MockHelixAdmin with implemenations for isSwapReadyToComplete a…
Browse files Browse the repository at this point in the history
…nd completeSwapIfReady.
  • Loading branch information
zpinto committed Oct 17, 2023
1 parent 8f67b64 commit c16310f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions helix-core/src/test/java/org/apache/helix/mock/MockHelixAdmin.java
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,16 @@ public boolean isEvacuateFinished(String clusterName, String instancesNames) {
return false;
}

@Override
public boolean isSwapReadyToComplete(String clusterName, String instancesNames) {
return false;
}

@Override
public boolean completeSwapIfReady(String clusterName, String instanceName) {
return false;
}

@Override
public boolean isReadyForPreparingJoiningCluster(String clusterName, String instancesNames) {
return false;
Expand Down

0 comments on commit c16310f

Please sign in to comment.