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
AsyncPutState::Put { bytes } => {
// Send the bytes to the object store's put method
return Poll::Ready(
ready!(self
.store
.put(&self.object_meta.location, bytes.clone())
.poll_unpin(cx))
.map_err(Error::from),
);
}
This will only work if store.put doesn't return Poll::Pending, in such a case the future will get dropped, cancelling the operation and never rescheduling the waker.
Describe the bug
AsyncPutWriter
has the following codeThis will only work if store.put doesn't return Poll::Pending, in such a case the future will get dropped, cancelling the operation and never rescheduling the waker.
FYI @devinjdangelo
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: