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
Currently any asynchronous request that enters wrap will race against each other, causing more requests than needed to go through.
Instead, do:
Only one request for a given unique key may be pending at a time, the other futures should queue up.
If that one request fails, all queued up futures should be marked as failed with the same error (this might be an issue if the error is not Clone). Alternatively, we provide our own error variant for this case.
The text was updated successfully, but these errors were encountered:
Currently any asynchronous request that enters wrap will race against each other, causing more requests than needed to go through.
Instead, do:
Clone
). Alternatively, we provide our own error variant for this case.The text was updated successfully, but these errors were encountered: