提交 333833c8 编写于 作者: K kohsuke

fixed a bug revealed by the reduced external job reloading cycle.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1138 71c3de6d-444a-0410-be80-ed276b4c234a
上级 a0bf5e23
......@@ -59,6 +59,12 @@ public abstract class ViewJob<JobT extends ViewJob<JobT,RunT>, RunT extends Run<
return false;
}
protected void onLoad(Hudson root, String name) throws IOException {
super.onLoad(root, name);
notLoaded = true;
}
protected SortedMap<Integer,RunT> _getRuns() {
if(notLoaded || runs==null) {
// if none is loaded yet, do so immediately.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册