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
If a replacement of one proof is successful, we close the old sink and replace it with the new one. This doesn't contemplate the case where the user has more proofs in the queue. By closing the old sink, the user will never receive a response if other proofs were submitted.
This can be resolved by simply dropping the old sink without closing it.
Before this fix, we need to refactor our handle_connection function to either read messages within a specified time frame or handle only one message per connection. Otherwise, the socket will remain open until the user closes it.
The text was updated successfully, but these errors were encountered:
If a replacement of one proof is successful, we close the old sink and replace it with the new one. This doesn't contemplate the case where the user has more proofs in the queue. By closing the old sink, the user will never receive a response if other proofs were submitted.
This can be resolved by simply dropping the old sink without closing it.
Before this fix, we need to refactor our
handle_connection
function to either read messages within a specified time frame or handle only one message per connection. Otherwise, the socket will remain open until the user closes it.The text was updated successfully, but these errors were encountered: