提交 0e004fa0 编写于 作者: K kutzi

need to call start() on MavenBuildProxy2 before end() - otherwise build...

need to call start() on MavenBuildProxy2 before end() - otherwise build duration is set to 40 years!

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@34055 71c3de6d-444a-0410-be80-ed276b4c234a
上级 ba95f0cd
......@@ -698,8 +698,10 @@ public class MavenModuleSetBuild extends AbstractMavenBuild<MavenModuleSet,Maven
for (Entry<ModuleName,MavenBuildProxy2> e : this.proxies.entrySet()) {
if (! buildingProjects.contains(e.getKey())) {
e.getValue().setResult(Result.NOT_BUILT);
e.getValue().end();
MavenBuildProxy2 proxy = e.getValue();
proxy.start();
proxy.setResult(Result.NOT_BUILT);
proxy.end();
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册