test interop fixes

This commit is contained in:
Giovanni Petrantoni 2020-06-28 16:37:27 +09:00
parent 3f39eeb189
commit d4ca9691d0
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ proc testPubSubNodePublish(gossip: bool = false,
proc publisher() {.async.} = proc publisher() {.async.} =
while not finished: while not finished:
await nativeNode.publish(testTopic, msgData) discard await nativeNode.publish(testTopic, msgData)
await sleepAsync(500.millis) await sleepAsync(500.millis)
await wait(publisher(), 5.minutes) # should be plenty of time await wait(publisher(), 5.minutes) # should be plenty of time