tustvold opened a new issue, #7991:
URL: https://github.com/apache/arrow-datafusion/issues/7991

   ### Describe the bug
   
   `AsyncPutWriter` has the following code
   
   ```
   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
   
   ### To Reproduce
   
   _No response_
   
   ### Expected behavior
   
   _No response_
   
   ### Additional context
   
   _No response_


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to