Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-16978: [C#] Intermittent Archery Failures #13573

Merged
merged 1 commit into from
Jul 12, 2022

Commits on Jul 11, 2022

  1. ARROW-16978: [C#] Intermittent Archery Failures

    RentReturnAsync has a bug where the rented byte[] is getting returned to the pool while the async action is still using it. This causes intermittent failures due to the pooled array's data being overwritten while it is still used.
    
    To fix the issue, we need to await the async action and only return the rented array back to the pool once the async action is complete.
    eerhardt committed Jul 11, 2022
    Configuration menu
    Copy the full SHA
    67e676d View commit details
    Browse the repository at this point in the history