File tree Expand file tree Collapse file tree
src/main/java/software/amazon/awssdk/crt/io Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ private void onShutdownComplete() {
9090 public static void closeStaticDefault () {
9191 synchronized (ClientBootstrap .class ) {
9292 if (staticDefaultClientBootstrap != null ) {
93- staticDefaultClientBootstrap .close ();
93+ staticDefaultClientBootstrap .close ("closeStaticDefault" );
9494 }
9595 staticDefaultClientBootstrap = null ;
9696 }
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ public static void setStaticDefaultNumThreads(int numThreads) {
9595 public static void closeStaticDefault () {
9696 synchronized (EventLoopGroup .class ) {
9797 if (staticDefaultEventLoopGroup != null ) {
98- staticDefaultEventLoopGroup .close ();
98+ staticDefaultEventLoopGroup .close ("closeStaticDefault" );
9999 }
100100 staticDefaultEventLoopGroup = null ;
101101 }
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public static void setStaticDefaultMaxEntries(int maxEntries) {
7373 public static void closeStaticDefault () {
7474 synchronized (HostResolver .class ) {
7575 if (staticDefaultResolver != null ) {
76- staticDefaultResolver .close ();
76+ staticDefaultResolver .close ("closeStaticDefault" );
7777 }
7878 staticDefaultResolver = null ;
7979 }
You can’t perform that action at this time.
0 commit comments