|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/d/optout.

I think the API exceptions are being caused by the requests generated by the radiators.
if (-1 !== data.color.search(/^(?:blue|notbuilt)/)) {
if (buildChanged) {
$.ajax("/job/" + job.name + "/lastCompletedBuild/api/json", {
dataType: "json",
success: function(data, stat, xhr) { base.timestamp(data.timestamp) .buildnum(data.number); }
});
}
culprits_set = {};
culprits_div.stopCarousel().empty();
} else if (buildChanged) {
$.ajax("/job/" + job.name + "/lastCompletedBuild/api/json", {
dataType: "json",
success: function(data, stat, xhr) { base.timestamp(data.timestamp) .buildnum(data.number) .culprits(data.culprits); }
});
$.ajax("/job/" + job.name + "/lastCompletedBuild/artifact/output/breakers.json", {
dataType: "json",
success: function(data, stat, xhr) { base.culprits(data); }
});
}
Not an unreasonable API request and not one that should generate any exceptions.