Skip to content

Commit

Permalink
Use longer poll timeout for REKT tests (#2703)
Browse files Browse the repository at this point in the history
* Use longer poll timeout for REKT tests

For both downstream Eventing and EKB.

* Place poll.timeout after path to tests
  • Loading branch information
mgencur committed Jun 10, 2024
1 parent a25e25f commit 51a8adf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/lib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -244,13 +244,14 @@ function downstream_eventing_e2e_rekt_tests {
# Need to specify a namespace that is in Mesh.
go_test_e2e "${RUN_FLAGS[@]}" ./test/eventinge2erekt ./test/eventinge2erekt/servicemesh \
--images.producer.file="${images_file}" \
--poll.timeout="8m" \
--poll.timeout=8m \
--environment.namespace=serverless-tests \
--istio.enabled="$MESH" \
"$@"
else
go_test_e2e "${RUN_FLAGS[@]}" ./test/eventinge2erekt \
--images.producer.file="${images_file}" \
--poll.timeout=8m \
"$@"
fi
}
Expand Down Expand Up @@ -316,8 +317,8 @@ function downstream_knative_kafka_e2e_rekt_tests {
# Need to specify a namespace that is in Mesh.
go_test_e2e "${RUN_FLAGS[@]}" ./test/extensione2erekt ./test/extensione2erekt/servicemesh \
--images.producer.file="${images_file}" \
--poll.timeout=8m \
--environment.namespace=serverless-tests \
--poll.timeout="8m" \
--istio.enabled="$MESH" \
"$@"

Expand All @@ -327,6 +328,7 @@ function downstream_knative_kafka_e2e_rekt_tests {
else
go_test_e2e "${RUN_FLAGS[@]}" ./test/extensione2erekt \
--images.producer.file="${images_file}" \
--poll.timeout=8m \
"$@"
fi
}
Expand Down

0 comments on commit 51a8adf

Please sign in to comment.