We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956c56c commit 70d2755Copy full SHA for 70d2755
server/src/main/java/com/hedera/block/server/ServiceStatusImpl.java
@@ -63,7 +63,12 @@ public void setWebServer(final WebServer webServer) {
63
* server in the event of an unrecoverable exception or during expected maintenance.
64
*/
65
public void stopWebServer() {
66
+
67
+ // Flag the service to stop
68
+ // accepting new connections
69
isRunning.set(false);
70
71
+ // Stop the web server
72
webServer.stop();
73
}
74
0 commit comments