fix(command): 修复参数名复数错误
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user