fix(command): 修复参数名复数错误

This commit is contained in:
v-zhangjc9
2024-04-25 18:22:54 +08:00
parent 3ed5cafef9
commit 00b21b06b4

View File

@@ -35,14 +35,14 @@ public class CompactionCommand extends AbstractUtilShellComponent {
@ShellMethod("启动表压缩任务")
public String compactionRun(
@ShellOption(help = "Flink job id") Long flinkJobIds,
@ShellOption(help = "Flink job id") Long flinkJobId,
@ShellOption(help = "别名") String alias,
@ShellOption(
help = "Ignore double check",
defaultValue = "false"
) Boolean ignoreCheck
) {
TableMeta meta = infoService.tableMetaDetail(flinkJobIds, alias);
TableMeta meta = infoService.tableMetaDetail(flinkJobId, alias);
return CommandLineUtils.generateResultLines(
() -> {
if (ObjectUtil.isEmpty(meta)) {