Skip to content

Commit 31a9303

Browse files
committed
Remove workaround for Netty resources cleanup
Closes gh-9146
1 parent 9201db3 commit 31a9303

File tree

1 file changed

+0
-3
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty

1 file changed

+0
-3
lines changed

Diff for: spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/NettyWebServer.java

-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import org.apache.commons.logging.LogFactory;
2323
import reactor.netty.ChannelBindException;
2424
import reactor.netty.DisposableServer;
25-
import reactor.netty.http.HttpResources;
2625
import reactor.netty.http.server.HttpServer;
2726

2827
import org.springframework.boot.web.server.PortInUseException;
@@ -122,8 +121,6 @@ public void stop() throws WebServerException {
122121
else {
123122
this.disposableServer.disposeNow();
124123
}
125-
// temporary fix for gh-9146
126-
HttpResources.shutdown();
127124
this.disposableServer = null;
128125
}
129126
}

0 commit comments

Comments
 (0)