You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Sometimes there are bugs that make the program run forever.
// Utreexo binary should never take more than 10 seconds to exit
gofunc() {
time.Sleep(60*time.Second)
fmt.Println("Program timed out. Force quitting. Data likely corrupted")
os.Exit(1)
}()
I don't suspect that there is a bug but rather that the test server is too slow to finish up in 60sec. I was using the cow forest for which it is normal to take longer when quitting since it has to commit a bunch of data to disk.
We should remove the timeout or increase it.
The text was updated successfully, but these errors were encountered:
I ran into this on the test server.
utreexo/bridgenode/genproofs.go
Lines 209 to 215 in 1a03a98
I don't suspect that there is a bug but rather that the test server is too slow to finish up in 60sec. I was using the cow forest for which it is normal to take longer when quitting since it has to commit a bunch of data to disk.
We should remove the timeout or increase it.
The text was updated successfully, but these errors were encountered: