Skip to content

Commit

Permalink
fix: check router file name changed
Browse files Browse the repository at this point in the history
  • Loading branch information
1jeongg committed Oct 11, 2024
1 parent aef7843 commit 0e95890
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public RouterResponse.CompanyImageDTO findCompanyImage(User userDetails) {
public RouterResponse.CheckRouter checkRouter(User user, Long routerId) {
Pair<Router, User> data = initDataWithPermissionCheck(user, routerId);
Router router = data.getFirst();
String result = sshConnectionUtil.connect("./check_status", router);
String result = sshConnectionUtil.connect("./check_refresh", router);

return new RouterResponse.CheckRouter(result);
}
Expand Down

0 comments on commit 0e95890

Please sign in to comment.