-
-
Notifications
You must be signed in to change notification settings - Fork 719
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
Clean up of unpack_remotedata()
#7322
Conversation
Unit Test ResultsSee test report for an extended history of previous test failures. This is useful for diagnosing flaky tests. 15 files ± 0 15 suites ±0 6h 44m 21s ⏱️ - 15m 51s For more details on these failures, see this check. Results for commit dd7479a. ± Comparison against base commit 69b74f9. ♻️ This comment has been updated with latest results. |
This does appear to fix the issue that I was seeing. I'm curious, what is your understanding of the problem and what did you do here to fix it? |
We need to do two things when unpacking futures surrounding
|
@fjetter is this something that you and your team can help to review? |
Also I hope that eventually something like #6028 makes things like this irrelevant |
Changes to the code appear to be straightforward. Can we add a test for #7289 please? It sounds like we should be able to test this by asserting that the object is not in the output multiple times, shouldn't we? |
I don't have anything handy, no. This came up when using Datashader. I
didn't do work to find something smaller unfortunately.
…On Mon, Nov 21, 2022 at 11:56 AM Mads R. B. Kristensen < ***@***.***> wrote:
Changes to the code appear to be straightforward. Can we add a test for
#7289 <#7289> please? It sounds
like we should be able to test this by asserting that the object is not in
the output multiple times, shouldn't we?
@mrocklin <https://github.com/mrocklin> do you have a small reproducer?
Otherwise, I can try to make a synthetic one.
—
Reply to this email directly, view it on GitHub
<#7322 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACKZTAUP3YBGUK7ZRTPTH3WJOZWNANCNFSM6AAAAAASDINDV4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
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.
Thanks @madsbk !
Separate the handling of futures with the argument of a
SubgraphCallable
and futures within theSubgraphCallable
itself.Closes #7289
Closes #7303
pre-commit run --all-files