System.err.println("Get live nodes...");
txnScheduler.runTask(new TestAbstractKernelRunnable() {
public void run() throws Exception {
for (Long longId : ids) {
long id = longId.longValue();
Node node = watchdogService.getNode(id);
System.err.println("node (" + id + "): " + node);
if (node == null || !node.isAlive()) {
fail("Expected alive node");
}
}
}
}, taskOwner);