increase sleep time to 100 millis

This commit is contained in:
Dmitriy Ryajov 2022-04-19 19:15:11 -06:00
parent 0ee9dca1c9
commit ec6f3b8058
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ proc encode*(
# TODO: this is a tight blocking loop so we sleep here to allow
# other events to be processed, this should be addressed
# by threading
await sleepAsync(10.millis)
await sleepAsync(100.millis)
for j in 0..<blocks:
let idx = blockIdx[j]