fvaleri commented on pull request #193:
URL:
https://github.com/apache/camel-kafka-connector/pull/193#issuecomment-626142554
Yeah no problem, I'm using the following simple script to test and in
addition to `testUrlPrecedenceOnComponentProperty` there is also
`testSourcePolling` that remains flaky. We must get rid of all those sleeps, I
will also have a look later.
```
#!/bin/sh
for (( i = 1; ; i++ ))
do
echo "Attempt $i"
mvn test -pl core -am
exitcode=$?
if [ $exitcode -ne 0 ]
then
echo "Error at attempt $i"
exit
fi
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]