orenccl commented on code in PR #103: URL: https://github.com/apache/gravitino-playground/pull/103#discussion_r1834069415
########## playground.sh: ########## @@ -177,27 +258,22 @@ docker) runtime="docker"; ;; *) - echo "ERROR: please specify which runtime you want to use, available runtime: [docker|k8s]" + echo "[ERROR] please specify which runtime you want to use, available runtime: [docker|k8s]" +esac + +skipChecks=false + +case "$3" in +--skip-checks) + skipChecks=true; + ;; +-s) + skipChecks=true; + ;; Review Comment: Thank you for the feedback. I'll remove the skipChecks parameter as suggested. The test didn't take much time, so this change should be straightforward. -- 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]
