-
Notifications
You must be signed in to change notification settings - Fork 183
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
Improve coverage & fix code smells #4188
Improve coverage & fix code smells #4188
Conversation
SonarQube Quality Gate |
@@ -151,7 +151,7 @@ public boolean isAvailable() { | |||
*/ | |||
public void deploy() throws IOException { | |||
LOG.debug("Detected os: {} arch: {} platform: {}", env.getOsName(), env.getOsArch(), platform); | |||
if (platform == UNSUPPORTED || isAvailable) { |
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.
should we remove isAvailable
altogether?
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.
isAvailable
is needed to know that deployment was successful and embeddednode can be used. We rely on it in NodeCommandBuilder
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.
LGTM, we can do this change in the feature branch: #4188 (comment)
ab29cc8
into
feature/bundle-node-runtime-in-analyzer
Fixes #