Skip to content

Commit

Permalink
[java] Ignoring exceptions in shutdown hook
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 7, 2020
1 parent c2d825e commit 9eb7fd6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ public Factory() {
private void callAsyncClientShutdown() {
try {
httpClient.close();
} catch (IOException e) {
e.printStackTrace();
} catch (IOException ignore) {
}
}

Expand Down

0 comments on commit 9eb7fd6

Please sign in to comment.