-
Notifications
You must be signed in to change notification settings - Fork 181
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
JS-390 Refactor HTTP layer in BridgeServerImpl #4899
Conversation
Quality Gate failedFailed conditions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SQ says code coverage is low. Can you somehow test a bit more?
} catch (NoSuchFieldException | IllegalAccessException | ClassNotFoundException | NoSuchMethodException | InvocationTargetException e) { | ||
LOG.info("Failed to set logger level to INFO for " + loggerName, e); | ||
} | ||
this.http = http; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh nice, I see you can now remove the hackiness that was added before
low coverage is due to |
JS-390
I cleaned-up the signatures of Bridge which declared
throws IOException
although this could never happen becauseIOException
is catched inBridgeServerImpl#request
See also change in https://github.com/SonarSource/sonar-armor/pull/394