Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,9 @@ private boolean hijackClientPort(int port) {
addressField.set(peerConfig, new InetSocketAddress(port));
return true;
}
} catch (Exception ignored) {
} catch (Exception e) {
// swallow hijack failure to accommodate possible upstream changes
log.debug("Failed to hijack client port configuration. This may be due to upstream changes", e);
}
return false;
}
Expand Down