Fixed a few instances of waitUntilNetworkReady() to fix flaky tests. (#1785)

This commit is contained in:
Clinton
2017-10-03 14:31:36 +01:00
committed by Viktor Kolomeyko
parent 4fa63d07dd
commit e6e3c29d74
4 changed files with 7 additions and 8 deletions

View File

@ -129,7 +129,7 @@ class AttachmentLoadingTests : TestDependencyInjectionBase() {
startNode(providedName = bankBName, rpcUsers = listOf(adminUser)),
startNode(providedName = notaryName, rpcUsers = listOf(adminUser), advertisedServices = setOf(ServiceInfo(SimpleNotaryService.type)))
).transpose().getOrThrow() // Wait for all nodes to start up.
nodes.forEach { it.rpc.waitUntilNetworkReady() }
nodes.forEach { it.rpc.waitUntilNetworkReady().getOrThrow() }
return nodes
}
}