[ARVADOS] updated: 8b689efa29d0db06e0a7c402c5d31107089bba5b

git at public.curoverse.com git at public.curoverse.com
Fri May 1 17:15:48 EDT 2015


Summary of changes:
 crunch_scripts/run-command | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

       via  8b689efa29d0db06e0a7c402c5d31107089bba5b (commit)
      from  5b970a6c9505527e146e73cb4756a64ecc1679cd (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 8b689efa29d0db06e0a7c402c5d31107089bba5b
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Fri May 1 17:07:33 2015 -0400

    5787: Fix syntax error

diff --git a/crunch_scripts/run-command b/crunch_scripts/run-command
index 1755eb9..1ff6361 100755
--- a/crunch_scripts/run-command
+++ b/crunch_scripts/run-command
@@ -426,14 +426,14 @@ if "task.vwd" in taskp and "task.foreach" in jobp:
             if stat.S_ISLNK(s.st_mode):
                 os.unlink(os.path.join(root, f))
 
-(outcollection, checkin_error) = vwd.checkin(outdir).manifest_text()
+(outcollection, checkin_error) = vwd.checkin(outdir)
 
 # Success if we ran any subprocess, and they all exited 0.
 success = rcode and all(status == 0 for status in rcode.itervalues()) and not checkin_error
 
 api.job_tasks().update(uuid=arvados.current_task()['uuid'],
                                      body={
-                                         'output': outcollection,
+                                         'output': outcollection.manifest_text(),
                                          'success': success,
                                          'progress':1.0
                                      }).execute()

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list