Skip to content

Commit

Permalink
fix: added comments
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Aug 7, 2024
1 parent 956c56c commit 70d2755
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ public void setWebServer(final WebServer webServer) {
* server in the event of an unrecoverable exception or during expected maintenance.
*/
public void stopWebServer() {

// Flag the service to stop
// accepting new connections
isRunning.set(false);

// Stop the web server
webServer.stop();
}
}

0 comments on commit 70d2755

Please sign in to comment.