[ARVADOS] updated: 7962de491af28d00a9c88412ad4d1e42be83432a
git at public.curoverse.com
git at public.curoverse.com
Wed Aug 6 17:26:46 EDT 2014
Summary of changes:
sdk/python/arvados/commands/put.py | 1 -
1 file changed, 1 deletion(-)
via 7962de491af28d00a9c88412ad4d1e42be83432a (commit)
from c29fc69a571bc2e4a4e450a09d94adbb305633bd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 7962de491af28d00a9c88412ad4d1e42be83432a
Author: Brett Smith <brett at curoverse.com>
Date: Wed Aug 6 17:28:12 2014 -0400
3427: Restore arv-put's resume functionality.
The refactoring in 0d1a48e accidentally introduced a bug where arv-put
wipes its resume cache clean before building the uploader. Because
the refactor always arranges `resume_cache = None` when the user
doesn't want to resume, we can fix the bug by just skipping the wipe.
Closes #3427.
diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py
index 55bf7fc..fa648da 100644
--- a/sdk/python/arvados/commands/put.py
+++ b/sdk/python/arvados/commands/put.py
@@ -412,7 +412,6 @@ def main(arguments=None, stdout=sys.stdout, stderr=sys.stderr):
if resume_cache is None:
writer = ArvPutCollectionWriter(resume_cache, reporter, bytes_expected)
else:
- resume_cache.restart()
writer = ArvPutCollectionWriter.from_cache(
resume_cache, reporter, bytes_expected)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list