Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add another check to connection reset when no java.net.SocketException has no cause #2435

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- [cygnus-ngsi][arcgis] Log feature table error
- [cygnus-ngsi][arcgis] fix log warn to debug level in arcgis feature when no object id is found (#2430)
- [cygnus-ngsi][arcgis] Add another check to connection reset when no java.net.SocketException has no cause (#2405)
- [cygnus-ngsi] Upgrade Debian version from 12.6 to 12.7 in Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,8 @@ private void setError(Exception e) {
connected = false;
}
LOGGER.error("Error Cause: " + e.getCause().getMessage());
} else if (e != null && e.getMessage().contains("Connection reset")) {
connected = false;
}
LOGGER.error("Error Message: " + e.getMessage());

Expand Down
Loading