Skip to content

Commit

Permalink
Merge pull request #67 from guewen/jobrunner-log-args
Browse files Browse the repository at this point in the history
Wrong arguments position in a log message
  • Loading branch information
pedrobaeza committed May 16, 2015
2 parents 0412d2c + d35183d commit aa5cf84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connector/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def retry_postpone(job, message, seconds=None):
if job.state != ENQUEUED:
_logger.warning('job %s is in state %s '
'instead of enqueued in /runjob',
job.state, job_uuid)
job_uuid, job.state)
return

with session_hdl.session() as session:
Expand Down

0 comments on commit aa5cf84

Please sign in to comment.