pitrou commented on code in PR #47623:
URL: https://github.com/apache/arrow/pull/47623#discussion_r2375638963
##########
ci/scripts/install_azurite.sh:
##########
@@ -20,18 +20,16 @@
set -e
node_version="$(node --version)"
-echo "node version = ${node_version}"
+echo "Node.js version = ${node_version}"
case "${node_version}" in
- v12*)
- # Pin azurite to 3.29.0 due to https://github.com/apache/arrow/issues/41505
- azurite_version=v3.29.0
- ;;
- *)
- azurite_version=latest
+ v12.*)
+ echo "Node.js is too old. We can't install Azurite."
+ exit
Review Comment:
Perhaps return an error here?
```suggestion
exit 1
```
--
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]