Skip to content

Commit

Permalink
Fix exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydesl committed Jun 25, 2019
1 parent c4e1485 commit d8216b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jqueuer_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ def start(node_id):

except Exception as e:
logger.error(
"Error starting thread for {}/{}".format(
container_service_name, experiment_id
"Error starting thread for {}".format(
container.name
)
)
logger.debug(e)
except Exception as e:
logger.error(
"Error getting container info for {}/{}".format(
container_service_name, experiment_id
"Error getting container info for {}".format(
container.name
)
)
logger.debug(e)
Expand Down

0 comments on commit d8216b8

Please sign in to comment.