Skip to content

Commit 640ea21

Browse files
authored
fix: wrong arguments are passed in entrypoint (#7)
Signed-off-by: Takumi Yanagawa <yana@jp.ibm.com>
1 parent 772072f commit 640ea21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/agent-harness/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ while [[ $# -gt 0 ]]; do
1010
case "$1" in
1111
--host) host="$2"; shift 2 ;;
1212
--port) port="$2"; shift 2 ;;
13-
--root_path) runner_id="$2"; shift 2 ;;
14-
--benchmark_timeout) token="$2"; shift 2 ;;
13+
--root_path) root_path="$2"; shift 2 ;;
14+
--benchmark_timeout) benchmark_timeout="$2"; shift 2 ;;
1515
*) echo "Unknown option: $1"; exit 1 ;;
1616
esac
1717
done

0 commit comments

Comments
 (0)