kou commented on PR #15118: URL: https://github.com/apache/arrow/pull/15118#issuecomment-1368377678
@lidavidm @wjones127 This might break `wheel-macos-big-sur-*`. For example: https://github.com/ursacomputing/crossbow/actions/runs/3815472986/jobs/6490471956#step:11:435 ```text =================================== FAILURES =================================== _________________________ test_none_action_side_effect _________________________ def test_none_action_side_effect(): """Ensure that actions are executed even when we don't consume iterator. See https://issues.apache.org/jira/browse/ARROW-14255 """ with ActionNoneFlightServer() as server, \ FlightClient(('localhost', server.port)) as client: client.do_action(flight.Action("append", b"")) r = client.do_action(flight.Action("get_value", b"")) > assert json.loads(next(r).body.to_pybytes()) == [True] E assert [] == [True] E Right contains one more item: True E Full diff: E - [True] E + [] test-arm64-env/lib/python3.10/site-packages/pyarrow/tests/test_flight.py:2132: AssertionError ----------------------------- Captured stderr call ----------------------------- /Users/voltrondata/github-actions-runner/_work/crossbow/crossbow/arrow/cpp/src/arrow/status.cc:137: DoAction result was not fully consumed: Cancelled: Flight cancelled call, with message: CANCELLED. Detail: Cancelled ``` -- 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]
