Skip to content

Commit 36e0e3b

Browse files
authored
Core: Update exception handler log filter (#3986)
1 parent 7e2cacf commit 36e0e3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/prebid/server/handler/ExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private static boolean shouldLogException(Throwable exception) {
3838

3939
private static boolean isConnectionResetException(Throwable exception) {
4040
return exception instanceof IOException
41-
&& StringUtils.equals("readAddress(..) failed: Connection reset by peer", exception.getMessage());
41+
&& StringUtils.equals("recvAddress(..) failed: Connection reset by peer", exception.getMessage());
4242
}
4343

4444
private static String errorMessageFrom(Throwable exception) {

0 commit comments

Comments
 (0)