python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
8080 gets closed immediately after sending SIGINT signal to tomcat
I am hosting an application in Tomcat. I have some cleanup logic that needs to run before application shuts down, which I have implemented using spring @Predestroy methods.
After I send SIGINT to the ...
AP_22
Votes: 0
Answers: 0
How should a NodeJs "graceful shutdown" handle setInterval?
I have a node backend taking HTTP requests using express. I am shutting down gracefully like this:
process.on( 'SIGINT', function() {
console.log("SIGINT signal received.");
server....
Phil
Votes: 0
Answers: 1
Graceful shutdown not working in Spring Boot App
I want to activate graceful shutdown on an existing Spring Boot (v2.3.9) app.
Initially, to test the feature out, I created a sample app and added the property
server.shutdown: graceful in the applica...
davyjones
Votes: 0
Answers: 1
GRPC: Why does client receive "UNAVAILABLE: Connection closed after GOAWAY. HTTP/2" if server is processing request
I have a unit test that attempts to verify a graceful grpc server shutdown by sending some grpc calls to the server, shutting down the server, and verifying the requests completed before the server sh...
depth13
Votes: 0
Answers: 0