KarmaGYZ commented on a change in pull request #10742: [FLINK-15442] Harden the
Avro Confluent Schema Registry nightly end-to-end test
URL: https://github.com/apache/flink/pull/10742#discussion_r363754200
##########
File path: flink-end-to-end-tests/test-scripts/common.sh
##########
@@ -748,7 +748,7 @@ function retry_times_with_backoff_and_cleanup() {
local command="$3"
local cleanup_command="$4"
- for (( i = 0; i < ${retriesNumber}; i++ ))
+ for i in $(seq 1 ${retriesNumber})
Review comment:
I think current scenario equals to the following script:
```
for (( i = 0; i < 10; i++ )) do
for i in {1..30}; do
echo $i
done
echo $i
done
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services