-
Notifications
You must be signed in to change notification settings - Fork 77
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
Investigate hanging tlsn/crates/tls/mpc/tests/test.rs
#559
Comments
Most likely
The fix is to not allow |
While working on #539 I encountered the same test hanging. I isolated it into a new investigation-branch.
|
This is fixed now and was caused by the changes of #539. But the original bug from the |
Closed by #568 |
When running the tls-mpc-test with a tracing configuration that emits
New
andClose
FmtSpans we were able to capture the following log trace_hang.txt.After filtering for lines that contain
decode_key_private
and writing all theseLeader
events into this filedecode_key_private.txt and doing the same for
decode_key_blind
and writing theseFollower
events into this file decode_key_blind.txt I notice thatdecode_key_private
is called twice on theLeader
site (line 1 and 21). This is not true for the follower, where it is called only once (line 1). This is what causes the leader site to be hanging inot_receive_active_encodings
(line 14389 intrace_hang.txt
).The cause for this might be that commit which calls
decode_key_private
is called twice:The text was updated successfully, but these errors were encountered: