-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TSS server's test_store_share
occasionally fails in CI with keyshare mismatch
#635
Comments
test_store_share
occasionally fails in CI with keyshare mismatch duetest_store_share
occasionally fails in CI with keyshare mismatch
This seems like a bandaid fix to me, and it's only going to make our already slow test times even worse. I guess the main thing to know here is why would the keyshares differ if registration takes longer than expected? |
Probably we could make it clearer what is happenning if we don't pass the account ID to Still though - the problem is that we need to poll for a registration confirmation to know that registration has completed. So we need a timeout (in this case 10 seconds) to prevent us from polling forever when registration fails for whatever reason. |
This test was removed in #1026. |
Occasionally in CI
test_store_share
fails with:See the failure in CI here: https://app.circleci.com/pipelines/github/entropyxyz/entropy-core/3173/workflows/ebe689da-3660-4093-9c51-ddb1a8f57701/jobs/11114
This came up in this PR #634
Looking at the test, this will always happen if the registration takes longer than 10 seconds to complete:
entropy-core/crates/threshold-signature-server/src/user/tests.rs
Line 622 in 0b8bda9
So one way to address this would be to increase the timeout from 10 seconds to say 30 seconds.
The text was updated successfully, but these errors were encountered: