This is an automated email from the ASF dual-hosted git repository.
rmetzger pushed a commit to branch release-1.18
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.18 by this push:
new b51dc716ce4 [FLINK-35526] Use more up to date jq docker image for
Flink e2e tests (#24892)
b51dc716ce4 is described below
commit b51dc716ce48862269fdd409ea85036d61ee7b57
Author: Robert Metzger <[email protected]>
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