Skip to content

Commit

Permalink
Treat proxy error as non-audited error
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakarFin committed Aug 26, 2024
1 parent 725da88 commit 2bc95fc
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,13 @@ public void handleAction(final ActionParameters params)
// just throw it as is if we already handled it
throw e;
} catch (Exception e) {
LOG.info("Url in proxy error was:", url);
throw new ActionParamsException("Couldn't proxy request to actual service", e.getMessage(), e);
LOG.debug("Url in proxy error was:", url);
throw new ActionCommonException("Couldn't proxy request to actual service: " + e.getMessage(), e);
} finally {
if(actionTimer != null) {
if (actionTimer != null) {
actionTimer.stop();
}
if(con != null) {
if (con != null) {
con.disconnect();
}
}
Expand Down

0 comments on commit 2bc95fc

Please sign in to comment.