You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
When preventRemoteBuildQueue option is activated and the remote job never have been build, job failed with this error: Got a blank response from Remote Jenkins Server, cannot continue.
In fact, you call an url /lastBuild on that job that return HTTP 404 because no build exists:
// get the ID of the Next Job to run.
if (this.getPreventRemoteBuildQueue()) {
listener.getLogger().println("Checking that the remote job " + jobName + " is not currently building.");
String preCheckUrlString = this.buildGetUrl(jobName, securityToken);
preCheckUrlString += "/lastBuild";
preCheckUrlString += "/api/json/";
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When preventRemoteBuildQueue option is activated and the remote job never have been build, job failed with this error:
Got a blank response from Remote Jenkins Server, cannot continue.
In fact, you call an url
/lastBuild
on that job that return HTTP 404 because no build exists:The text was updated successfully, but these errors were encountered: