This is an automated email from the ASF dual-hosted git repository.

dmvk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 8c3637b47f3 [FLINK-32123][e2e] Fix E2E kafka download timeout
8c3637b47f3 is described below

commit 8c3637b47f3dd906694857cd1b808139599126fa
Author: Panagiotis Garefalakis <[email protected]>
AuthorDate: Wed May 17 12:27:41 2023 -0700

    [FLINK-32123][e2e] Fix E2E kafka download timeout
---
 flink-end-to-end-tests/test-scripts/kafka-common.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-end-to-end-tests/test-scripts/kafka-common.sh 
b/flink-end-to-end-tests/test-scripts/kafka-common.sh
index 75304ad7cc5..8c5051917b6 100644
--- a/flink-end-to-end-tests/test-scripts/kafka-common.sh
+++ b/flink-end-to-end-tests/test-scripts/kafka-common.sh
@@ -37,7 +37,7 @@ MAX_RETRY_SECONDS=120
 function setup_kafka_dist {
   # download Kafka
   mkdir -p $TEST_DATA_DIR
-  
KAFKA_URL="https://archive.apache.org/dist/kafka/$KAFKA_VERSION/kafka_2.12-$KAFKA_VERSION.tgz";
+  
KAFKA_URL="https://downloads.apache.org/kafka/$KAFKA_VERSION/kafka_2.12-$KAFKA_VERSION.tgz";
   echo "Downloading Kafka from $KAFKA_URL"
   cache_path=$(get_artifact $KAFKA_URL)
   ln "$cache_path" "${TEST_DATA_DIR}/kafka.tgz"

Reply via email to