From: Brett Smith Date: Wed, 2 Dec 2015 17:54:56 +0000 (-0500) Subject: 7313: Fix sprintf formatter in crunch-job warning message. X-Git-Tag: 1.1.0~1215 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/aa0414614096795eda8b58c414d0d2b15e063c70?ds=sidebyside;hp=-c 7313: Fix sprintf formatter in crunch-job warning message. Refs #7313. --- aa0414614096795eda8b58c414d0d2b15e063c70 diff --git a/sdk/cli/bin/crunch-job b/sdk/cli/bin/crunch-job index b2c14d5b71..fca124726a 100755 --- a/sdk/cli/bin/crunch-job +++ b/sdk/cli/bin/crunch-job @@ -1191,7 +1191,7 @@ sub reapchildren if (!defined $task_success) { # task did not indicate one way or the other --> fail Log($jobstepid, sprintf( - "ERROR: Task process exited %d, but never updated its task record to indicate success and record its output.", + "ERROR: Task process exited %s, but never updated its task record to indicate success and record its output.", exit_status_s($childstatus))); $Jobstep->{'arvados_task'}->{success} = 0; $Jobstep->{'arvados_task'}->save;