Skip to content

Commit

Permalink
ci: limit max parallel jobs in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lwpk110 committed Jan 13, 2025
1 parent 055cbab commit 42ff513
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
matrix:
k8s-version: ['1.26.15', '1.27.16']
product-version: ['3.7.1', '3.8.0']
max-parallel: 1
steps:
- name: Clone the code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/tls/client-tls-access-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data:
exit 1
fi
if /kubedoop/kafka/bin/kafka-topics.sh --list --topic "$TOPIC" --bootstrap-server "$KAFKA" --command-config /tmp/client.config | grep "$TOPIC"
if /kubedoop/kafka/bin/kafka-topics.sh --list --topic "$TOPIC" --bootstrap-server "$KAFKA" --command-config --timeout-ms 30000 /tmp/client.config | grep "$TOPIC"
then
echo "[SUCCESS] Secure client topic read!"
else
Expand Down

0 comments on commit 42ff513

Please sign in to comment.