Skip to content

Commit

Permalink
Adjust expected HS ready events
Browse files Browse the repository at this point in the history
  • Loading branch information
freimair committed Aug 14, 2019
1 parent a630d44 commit b4818d8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,10 @@ public void start(@Nullable SetupListener setupListener) {

nodeAddressToHSDirectory.put(nodeAddress, current);
} catch (Exception e) {
if (e instanceof IOException && e.getMessage().contains("collision"))
if (e instanceof IOException && e.getMessage().contains("collision")) {
deleteHiddenServiceDir(current);
else
gate.countDown();
} else
throw e;
}
});
Expand Down

0 comments on commit b4818d8

Please sign in to comment.