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
BUG 🐛:
Client
process_files()
INVESTIGATION 🕵️:
'Completed'
'Exception'
zip_and_upload
upload_and_callback
upload_to_bucket_collated
result
log
swiftclient.Connection.put_object
swiftclient.client.post_object
swiftclient.Connection._retry
response_dict
while True
The text was updated successfully, but these errors were encountered:
Temporary fix with loop script.
Sorry, something went wrong.
PR, but keep branch
davedavemckay
Successfully merging a pull request may close this issue.
BUG 🐛:
Client
closes whenprocess_files()
completesINVESTIGATION 🕵️:
process_files()
completes when all futures reach'Completed'
or'Exception'
status ('Exception'
is a failsafe that hasn't ever been observed)'Completed'
whenzip_and_upload
returnszip_and_upload
returns whenupload_and_callback
returns or no files are found to zip (i.e., an empty folder is passed tozip_and_upload
)upload_and_callback
returns whenupload_to_bucket_collated
returnsresult
andresult
is written tolog
upload_to_bucket_collated
returns whenswiftclient.Connection.put_object
returnsswiftclient.Connection.put_object
is a wrapper ofswiftclient.client.post_object
and returns aswiftclient.Connection._retry
objectswiftclient.client.post_object
seems to run in the background and update aresponse_dict
on completion or fail after a given number of retrieswhile True
that checks thisresponse_dict
may prevent premature closing of the Dask Client. 😅The text was updated successfully, but these errors were encountered: