Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
topframe committed Apr 18, 2024
1 parent 3e55346 commit 9219337
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,15 @@ public void restart() throws Exception {
doStart();
active = true;

logger.info(getServiceName() + " restarted successfully");

for (ServiceLifeCycle serviceLifeCycle : derivedServices) {
serviceLifeCycle.start();
}

logger.info(getServiceName() + " restarted successfully");
if (serviceStateListener != null) {
serviceStateListener.started();
}
}
}

Expand Down

0 comments on commit 9219337

Please sign in to comment.