-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
MINOR: [Python] Deduplicate ensure_s3_initialized()
call
#38451
Conversation
@kou as per #38375 (comment), here's the PR to deduplicate the |
@github-actions crossbow submit -g python -g wheel |
Revision: 4023801 Submitted crossbow builds: ursacomputing/crossbow @ actions-89f99927a7 |
The failing Appveyor tests look similar to ones I just encountered. These may be solved by this PR to update the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
We can ignore the AppVeyor failure in this PR.
Thanks all! 🙏 |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit ff7b3bb. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 1 possible false positive for unstable benchmarks that are known to sometimes produce them. |
) ### Rationale for this change apache#38375 introduced duplicate calls to `ensure_s3_initialized()`. ### What changes are included in this PR? Deduplicates call to `ensure_s3_initialized()`. ### Are these changes tested? Yes, covered by existing S3 tests. ### Are there any user-facing changes? No. Authored-by: Peter Andreas Entschev <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
) ### Rationale for this change apache#38375 introduced duplicate calls to `ensure_s3_initialized()`. ### What changes are included in this PR? Deduplicates call to `ensure_s3_initialized()`. ### Are these changes tested? Yes, covered by existing S3 tests. ### Are there any user-facing changes? No. Authored-by: Peter Andreas Entschev <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
#38375 introduced duplicate calls to
ensure_s3_initialized()
.What changes are included in this PR?
Deduplicates call to
ensure_s3_initialized()
.Are these changes tested?
Yes, covered by existing S3 tests.
Are there any user-facing changes?
No.