matthewdeng opened a new issue, #41087: URL: https://github.com/apache/arrow/issues/41087
### Describe the bug, including details regarding any error messages, version, and platform. # Summary Constructing an `S3FileSystem` with `role_arn` set will cause a `SIGABRT` to be raised at the end of the script. This impacts workflows that depend on the exit code. # Repro **PyArrow Version:** 15.0.2 (Happens starting in 13.0.0, does not happen in 12.0.1) **`repro.py`:** ```python import pyarrow.fs filesystem = pyarrow.fs.S3FileSystem(role_arn="...") ``` **Output:** ``` $ python repro.py Fatal error condition occurred in /opt/vcpkg/buildtrees/aws-c-common/src/v0.8.9-fed0b55d0f.clean/source/allocator.c:209: allocator != ((void *)0) Exiting Application No call stack information available Aborted $ echo $? 134 ``` ### Component(s) C -- 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]
