-
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
GH-35234: [Go] Fix skip argument to Callers #35231
Conversation
Thanks for opening a pull request! If this is not a minor PR. Could you open an issue for this pull request on GitHub? https://github.com/apache/arrow/issues/new/choose Opening GitHub issues ahead of time contributes to the Openness of the Apache Arrow project. Then could you also rename the pull request title in the following format?
or
In the case of PARQUET issues on JIRA the title also supports:
See also: |
|
Test failure doesn't seem relevant |
@hermanschaaf can you try rebaseing from main and seeing if that alleviates the test failure? |
@zeroshade Just updated to the latest main; looks like all the tests passed except for
|
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.
I agree, the failure is unrelated to this PR. if it fails in main after merging this I'll file an issue to look into it.
Benchmark runs are scheduled for baseline = 1a697ab and contender = c48916a. c48916a is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Follow-up to apache#35215. It's mostly cosmetic, but without the additional 2 skips passed in to `Callers`, the Caller frame is repeated in the stack trace, and one frame below it is added as well. With this change, the checked allocator stack trace contains no duplicates. I had this change locally but didn't realize it wasn't pushed to the PR branch, sorry about that 🙇 * Closes: apache#35234 Authored-by: Herman Schaaf <hermanschaaf@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
Follow-up to apache#35215. It's mostly cosmetic, but without the additional 2 skips passed in to `Callers`, the Caller frame is repeated in the stack trace, and one frame below it is added as well. With this change, the checked allocator stack trace contains no duplicates. I had this change locally but didn't realize it wasn't pushed to the PR branch, sorry about that 🙇 * Closes: apache#35234 Authored-by: Herman Schaaf <hermanschaaf@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
Follow-up to apache#35215. It's mostly cosmetic, but without the additional 2 skips passed in to `Callers`, the Caller frame is repeated in the stack trace, and one frame below it is added as well. With this change, the checked allocator stack trace contains no duplicates. I had this change locally but didn't realize it wasn't pushed to the PR branch, sorry about that 🙇 * Closes: apache#35234 Authored-by: Herman Schaaf <hermanschaaf@gmail.com> Signed-off-by: Matt Topol <zotthewizard@gmail.com>
Follow-up to #35215. It's mostly cosmetic, but without the additional 2 skips passed in to
Callers
, the Caller frame is repeated in the stack trace, and one frame below it is added as well. With this change, the checked allocator stack trace contains no duplicates.I had this change locally but didn't realize it wasn't pushed to the PR branch, sorry about that 🙇