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

hong pushed a commit to branch release-1.19.1-rc1
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 24e43b197a98aa2a43a1282783a7ffd92626a6a6
Author: Robert Metzger <89049+rmetz...@users.noreply.github.com>
AuthorDate: Thu Jun 6 07:48:06 2024 +0200

    [FLINK-35526] Use more up to date jq docker image for Flink e2e tests 
(#24892)
---
 flink-end-to-end-tests/test-scripts/common_s3_operations.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-end-to-end-tests/test-scripts/common_s3_operations.sh 
b/flink-end-to-end-tests/test-scripts/common_s3_operations.sh
index 965099b6527..383e917dcb3 100644
--- a/flink-end-to-end-tests/test-scripts/common_s3_operations.sh
+++ b/flink-end-to-end-tests/test-scripts/common_s3_operations.sh
@@ -150,7 +150,7 @@ function s3_get_number_of_lines_by_prefix() {
 
   # find all files that have the given prefix
   parts=$(aws_cli s3api list-objects --bucket "$IT_CASE_S3_BUCKET" --prefix 
"$1" |
-    docker run -i --rm stedolan/jq -r '[.Contents[].Key] | join(" ")')
+    docker run -i --rm ghcr.io/jqlang/jq:1.7.1 -r '[.Contents[].Key] | join(" 
")')
 
   # in parallel (N tasks), query the number of lines, store result in a file 
named lines
   N=10

Reply via email to