Skip to content

Commit 67e56b0

Browse files
author
Yang Guo
committed
rename cmd handler in cc cmd dispatcher
1 parent 135da36 commit 67e56b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

platform-control-center/src/main/java/com/flow/platform/cc/service/CmdDispatchServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void init() {
9393
ShutdownCmdHandler shutdownHandler = new ShutdownCmdHandler();
9494
handler.put(shutdownHandler.handleType(), shutdownHandler);
9595

96-
RunOtherCmdHandler runOtherCmdHandler = new RunOtherCmdHandler();
96+
SystemInfoCmdHandler runOtherCmdHandler = new SystemInfoCmdHandler();
9797
handler.put(runOtherCmdHandler.handleType(), runOtherCmdHandler);
9898
}
9999

@@ -372,7 +372,7 @@ public void doExec(Agent target, Cmd cmd) {
372372
}
373373
}
374374

375-
private class RunOtherCmdHandler extends CmdHandler {
375+
private class SystemInfoCmdHandler extends CmdHandler {
376376

377377
@Override
378378
CmdType handleType() {

0 commit comments

Comments
 (0)