Skip to content

Commit d8216b8

Browse files
committed
Fix exceptions
1 parent c4e1485 commit d8216b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

jqueuer_agent.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,15 @@ def start(node_id):
117117

118118
except Exception as e:
119119
logger.error(
120-
"Error starting thread for {}/{}".format(
121-
container_service_name, experiment_id
120+
"Error starting thread for {}".format(
121+
container.name
122122
)
123123
)
124124
logger.debug(e)
125125
except Exception as e:
126126
logger.error(
127-
"Error getting container info for {}/{}".format(
128-
container_service_name, experiment_id
127+
"Error getting container info for {}".format(
128+
container.name
129129
)
130130
)
131131
logger.debug(e)

0 commit comments

Comments
 (0)