Skip to content

Commit

Permalink
Partial revert of "Correctly close the NonBlockingReader to shutdown …
Browse files Browse the repository at this point in the history
…the reading thread", fixes #167

This partially reverts commit b94e9b9.
  • Loading branch information
gnodet committed Sep 15, 2017
1 parent babbc2c commit 11eb592
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public void close() throws IOException {
Signals.unregister(entry.getKey().name(), entry.getValue());
}
super.close();
reader.close();
// Do not call reader.close()
reader.shutdown();
}
}

0 comments on commit 11eb592

Please sign in to comment.