未验证 提交 8ab5ab57 编写于 作者: O Oleg Nenashev 提交者: GitHub

Merge pull request #3869 from jsoref/JENKINS-53077

JENKINS-53077 - don't process empty responseText
......@@ -1515,6 +1515,10 @@ function refreshPart(id,url) {
window.clearInterval(intervalID);
return;
}
if (!rsp.responseText) {
console.log("Failed to retrieve response for ID " + id + ", perhaps Jenkins is unavailable");
return;
}
var p = hist.up();
var div = document.createElement('div');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册