Skip to content

Commit

Permalink
fix: add missing comma to ssm command (#137)
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Edwards <edwards@amazon.com>
  • Loading branch information
edwards-aws authored Aug 13, 2024
1 parent 28767c7 commit b8db187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deadline_test_fixtures/deadline/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -723,8 +723,8 @@ def get_worker_id(self) -> str:
cmd_result = self.send_command(
" && ".join(
[
f"t=0 && while [ $t -le 10 ] && ! (test -f {worker_state_filename}); do sleep $t; t=$[$t+1]; done"
f"cat {worker_state_filename} | jq -r '.worker_id'"
f"t=0 && while [ $t -le 10 ] && ! (test -f {worker_state_filename}); do sleep $t; t=$[$t+1]; done",
f"cat {worker_state_filename} | jq -r '.worker_id'",
]
)
)
Expand Down

0 comments on commit b8db187

Please sign in to comment.