提交 027b8a9b 编写于 作者: S Stephen Connolly

fix failing tests (hopefully)

上级 ebd0bde9
......@@ -747,7 +747,13 @@ public class Queue extends ResourceController implements Saveable {
public boolean cancel(Item item) {
LOGGER.log(Level.FINE, "Cancelling {0} item#{1}", new Object[] {item.task, item.id});
return item.cancel(this);
lock.lock();
try {
return item.cancel(this);
} finally {
updateSnapshot();
lock.unlock();
}
}
/**
......
......@@ -47,7 +47,7 @@ public class JenkinsReloadConfigurationTest {
}
private void modifyNode(Node node) throws Exception {
replace("config.xml", "oldLabel", "newLabel");
replace(String.format("nodes/%s/config.xml",node.getNodeName()), "oldLabel", "newLabel");
assertEquals("oldLabel", node.getLabelString());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册