Skip to content

Commit

Permalink
Revert "Fixed log statement for job status code."
Browse files Browse the repository at this point in the history
This reverts commit 192946d
  • Loading branch information
swainn committed Oct 31, 2017
1 parent 192946d commit ad0e389
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions condorpy/workflow.py
Expand Up @@ -141,13 +141,12 @@ def _update_status(self, sub_job_num=None):
raise HTCondorError('Job not found.')

out = out.replace('\"', '').strip()
log.info('Job %s status: %s', job_id, out)

for status_code_str in out:
status_code = int(status_code_str)
key = CONDOR_JOB_STATUSES[status_code]

log.info('Job %s status: %s', job_id, status_code)

return key

def add_node(self, node):
Expand Down

0 comments on commit ad0e389

Please sign in to comment.