Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
sixpluszero committed Jan 16, 2025
1 parent 13ac4c7 commit b00702f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ public static void main(String[] args) throws Exception {
dumpHostHeartbeat(cmd);
break;
case CLUSTER_BATCH_TASK:
runClusterCommand(cmd);
clusterBatchTask(cmd);
break;
default:
StringJoiner availableCommands = new StringJoiner(", ");
Expand Down Expand Up @@ -861,7 +861,7 @@ private static void deleteStore(CommandLine cmd) throws IOException {
printObject(response);
}

private static void runClusterCommand(CommandLine cmd) {
private static void clusterBatchTask(CommandLine cmd) {
String clusterName = getRequiredArgument(cmd, Arg.CLUSTER, Command.CLUSTER_BATCH_TASK);
String task = getRequiredArgument(cmd, Arg.TASK_NAME, Command.CLUSTER_BATCH_TASK);
String checkpointFile = getRequiredArgument(cmd, Arg.CHECKPOINT_FILE, Command.CLUSTER_BATCH_TASK);
Expand Down

0 comments on commit b00702f

Please sign in to comment.