Skip to content

Commit

Permalink
correct syntax error for sleep command to wait for port-forwading to …
Browse files Browse the repository at this point in the history
…be ongoing
  • Loading branch information
mfournioux committed Nov 28, 2024
1 parent ad76bf7 commit f0ac67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: curl test
run: |

Check failure on line 69 in .github/workflows/lint-test.yaml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2006:style:3:6: Use $(...) notation instead of legacy backticks `...`

Check failure on line 69 in .github/workflows/lint-test.yaml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2086:info:11:6: Double quote to prevent globbing and word splitting

Check failure on line 69 in .github/workflows/lint-test.yaml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC2077:error:11:12: You need spaces around the comparison operator
kubectl -n ns-vllm port-forward service/test-vllm-service 8001:80 &
sleep(10)
sleep 10
CODE=`curl --location http://localhost:8001/v1/completions \
--header "Content-Type: application/json" \
--data '{
Expand Down

0 comments on commit f0ac67c

Please sign in to comment.