We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
using 0.4.2, when trying to persist a Rechunker object on a dask cluster, an AttributeError gets raised.
AttributeError
E.g. when running the tutorial, cell 11 raises:
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-11-d4bee8fff75b> in <module> ----> 1 future = array_plan.persist() 2 progress(future) AttributeError: 'Rechunked' object has no attribute 'persist'
The text was updated successfully, but these errors were encountered:
OK, it seems that an array_plan.plan.persist() is needed instead. I will make a PR
array_plan.plan.persist()
Sorry, something went wrong.
Thanks for reporting!
I'm puzzled why this API has changed.
This seems to be the commit that introduced the change b6b4a52
So, should we just update the docs or you'd rather think more over it?
No branches or pull requests
using 0.4.2, when trying to persist a Rechunker object on a dask cluster, an
AttributeError
gets raised.E.g. when running the tutorial, cell 11 raises:
The text was updated successfully, but these errors were encountered: