-
Notifications
You must be signed in to change notification settings - Fork 130
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
Implement afterDisconnect
in SimpleCommandLauncher
#922
Conversation
LOGGER.log(Level.INFO, "agent launched for {0}", computer.getName()); | ||
} catch (Exception x) { | ||
LOGGER.log(Level.WARNING, null, x); | ||
} | ||
} | ||
|
||
@SuppressFBWarnings(value = "IS2_INCONSISTENT_SYNC", justification = "test code, close enough") |
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.
command-launcher
plugin could be updated to match, I guess, though it mainly matters here because of Windows tests.
I'm seeing frequent flakes in Jenkins core in |
Also https://ci.jenkins.io/job/Core/job/jenkins/job/PR-10305/9/testReport/junit/hudson.cli/ConnectNodeCommandTest/linux_jdk17___Linux___JDK_17___Build___Test___connectNodeManyShouldSucceed/ I suppose. I tried running both locally, and they passed, 350 times in a row. Tried inserting delays into The The |
I've been running core builds and watching for flakes for the past week as part of #913. There is some sort of issue in HtmlUnit which affects HtmlUnit-tests seemingly at random which remains a problem. Other than that, #913 was the top flake I observed up until the release of 2403.v256947ecb_c8a_ which gained the fix for #913 possibly (seemingly?) at the cost of destabilizing |
https://github.com/jenkinsci/jenkins/pull/10240/checks?check_run_id=37600387598 (jenkinsci/jenkins#10240) now some flakes on Windows. One failure in
which obviously involves code touched in this PR, though it should not be changing the behavior of |
#921 (comment)
Needed for jenkinsci/support-core-plugin#624 and transitively for jenkinsci/workflow-cps-plugin#986. Seems to do no harm in jenkinsci/workflow-durable-task-step-plugin#429 and jenkinsci/jenkins#10300.