Remove useless call to waitUntilNetworkReady within driver started nodes (#1998)

Remove usages of waitUntilNetworkReady in conjunction with driver
This commit is contained in:
Alberto Arri
2017-11-03 14:27:46 +00:00
committed by GitHub
parent 22453204ed
commit 9be37c2b88
6 changed files with 5 additions and 19 deletions

View File

@ -68,7 +68,6 @@ class AttachmentLoadingTests {
startNode(providedName = bankAName, rpcUsers = listOf(adminUser)),
startNode(providedName = bankBName, rpcUsers = listOf(adminUser))
).transpose().getOrThrow() // Wait for all nodes to start up.
nodes.forEach { it.rpc.waitUntilNetworkReady().getOrThrow() }
return nodes
}