You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "lidavidm (via GitHub)" <gi...@apache.org> on 2023/05/22 13:09:47 UTC

[GitHub] [arrow] lidavidm commented on issue #35703: [Python][FlightRPC]Why does do_put not return results?

lidavidm commented on issue #35703:
URL: https://github.com/apache/arrow/issues/35703#issuecomment-1557194740

   `writer.close` closes both halves of the connection (yes, this is confusing). You probably want `writer.done_writing` instead. This should work:
   
   ```python
       with writer:
           writer.write_table(data)
           writer.done_writing()
           print(f'result = {reader.read()}')
   ```


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org