gemini-code-assist[bot] commented on code in PR #38279: URL: https://github.com/apache/beam/pull/38279#discussion_r3417805184
########## .test-infra/dataproc/flink_cluster.sh: ########## @@ -35,7 +35,7 @@ # HARNESS_IMAGES_TO_PULL='gcr.io/<IMAGE_REPOSITORY>/python:latest gcr.io/<IMAGE_REPOSITORY>/java:latest' \ # JOB_SERVER_IMAGE=gcr.io/<IMAGE_REPOSITORY>/job-server-flink:latest \ # ARTIFACTS_DIR=gs://<bucket-for-artifacts> \ -# FLINK_DOWNLOAD_URL=https://archive.apache.org/dist/flink/flink-1.17.0/flink-1.17.0-bin-scala_2.12.tgz \ +# FLINK_DOWNLOAD_URL=https://archive.apache.org/dist/flink/flink-2.0.1/flink-2.0.1-bin-scala_2.12.tgz \ Review Comment:  In Flink 2.0, Scala has been completely decoupled from the Flink runtime and distribution (FLIP-323 / FLIP-441). As a result, the Flink 2.0 distribution binaries no longer include the `-bin-scala_2.12` suffix in their filenames. Please update the URL to use the Scala-free binary distribution name to avoid a 404 error. ```suggestion # FLINK_DOWNLOAD_URL=https://archive.apache.org/dist/flink/flink-2.0.1/flink-2.0.1-bin.tgz \ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
