Skip to content

Commit

Permalink
Merge branch '3.2.x'
Browse files Browse the repository at this point in the history
Closes gh-39365
  • Loading branch information
mhalbritter committed Feb 1, 2024
2 parents 925072f + 86039f2 commit c0de2ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
* Handles Jetty graceful shutdown.
*
* @author Andy Wilkinson
* @author Onur Kagan Ozcan
*/
final class GracefulShutdown {

Expand Down Expand Up @@ -99,7 +100,6 @@ private void awaitShutdown(GracefulShutdownCallback callback) {
while (this.shuttingDown && this.activeRequests.get() > 0) {
sleep(100);
}
System.out.println(this.activeRequests.get());
this.shuttingDown = false;
long activeRequests = this.activeRequests.get();
if (activeRequests == 0) {
Expand Down

0 comments on commit c0de2ba

Please sign in to comment.