提交 e7bf3965 编写于 作者: J Josh Soref 提交者: Oliver Gondža

JENKINS-52159: Queue.maintain - tolerate misbehaving sorter.sortBuildableItems()

Any plugin that implements the sort step could throw an exception which would break
the maintain() step. As sorting is really an optional step, it really should not be fatal.

Instead, we wrap the step in a try block, log it, and move on with life.

(cherry picked from commit 1083a3f5)
上级 b83f350d
......@@ -1569,8 +1569,15 @@ public class Queue extends ResourceController implements Saveable {
}
}
if (s != null)
s.sortBuildableItems(buildables);
if (s != null) {
try {
s.sortBuildableItems(buildables);
} catch (Throwable e) {
// We don't really care if the sort doesn't sort anything, we still should
// continue to do our job. We'll complain about it and continue.
LOGGER.log(Level.WARNING, "s.sortBuildableItems() threw Throwable: {0}", e);
}
}
// Ensure that identification of blocked tasks is using the live state: JENKINS-27708 & JENKINS-27871
updateSnapshot();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册