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
This bound should be equal to the max_requests_in_fly:
Actually no, I need to revisit the entire stack of APIs. There are several people who don't seem to care about back-pressure here, so we need to give them some guarantees of success for the sending.
Problem introduced in #793
The
Full
error is meant to indicate that there are too many requests in fly. Right now after only 4 requests it's already full.This bound should be equal to the
max_requests_in_fly
:smoldot/lib/src/json_rpc/service/client_main_task.rs
Line 141 in 12644b3
Unfortunately, the underlying code does
with_capacity(cap)
, so we can't set this tousize::max_value()
.The text was updated successfully, but these errors were encountered: