From e820c9c4c310be584f49f3f33994d535bcd05711 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Mon, 7 Jul 2014 13:10:42 -0400 Subject: [PATCH] 3078: arv-put always writes progress before starting work. It previously did this when resuming, but there's no reason we shouldn't do it when starting fresh as well. --- sdk/python/arvados/commands/put.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py index ef34e07199..6da45e2b89 100644 --- a/sdk/python/arvados/commands/put.py +++ b/sdk/python/arvados/commands/put.py @@ -367,8 +367,8 @@ def main(arguments=None, output_to=sys.stdout): print >>sys.stderr, "\n".join([ "arv-put: Resuming previous upload from last checkpoint.", " Use the --no-resume option to start over."]) - writer.report_progress() + writer.report_progress() writer.do_queued_work() # Do work resumed from cache. for path in args.paths: # Copy file data to Keep. if os.path.isdir(path): -- 2.30.2