Skip to content

Commit

Permalink
fix: timeout increase
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamir David authored and Tamir David committed Oct 20, 2024
1 parent e452ff0 commit 0215251
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/e2e/helm-chart/chainsaw-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ spec:
- name: Verify Odigos Installation
try:
- script:
timeout: 200s
content: |
echo "Starting Odigos version check..."
export ACTUAL_VERSION=$(../../../cli/odigos version --cluster)
Expand All @@ -53,11 +54,12 @@ spec:
exit 1
fi
echo "Sleeping for 35 seconds to allow Odigos to start"
for i in {1..7}; do
sleep 5
echo "Still waiting... Slept for $((i*5)) seconds"
done
echo "Sleeping for 35 seconds to allow Odigos to start"
for i in {1..35}; do
echo "Waiting... $i seconds elapsed"
sleep 1
done
else
if [ "$ACTUAL_VERSION" != "e2e-test" ]; then
Expand Down

0 comments on commit 0215251

Please sign in to comment.