jackylee-ch commented on a change in pull request #35763:
URL: https://github.com/apache/spark/pull/35763#discussion_r832897327
##########
File path:
resource-managers/kubernetes/integration-tests/scripts/setup-integration-test-env.sh
##########
@@ -118,7 +118,7 @@ then
# Build SparkR image
tags=(${EXCLUDE_TAGS//,/ })
- if [[ ! ${tags[@]} =~ "r" ]]; then
+ if [[ ! " ${tags[*]} " =~ " r " ]]; then
Review comment:
cc @dongjoon-hyun. Could you look at this?
It seems that we run k8s integratation tests with
`test.exclude.tags=minikube,r,local`, and the logic here actually means to
check if one of the arguments is "r"? If this, then `if [[ ! " ${tags[*]} " =~
" r " ]]; then` can work well with it.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]