This is an automated email from the ASF dual-hosted git repository. singhpk234 pushed a commit to branch release/1.2.x in repository https://gitbox.apache.org/repos/asf/polaris.git
commit 9a7d1ae04e21098d297843fc48bed7d94a2dc9ce Author: Prashant Singh <[email protected]> AuthorDate: Sun Oct 12 20:54:44 2025 -0700 FIX REG tests with cloud providers (#2793) --- regtests/README.md | 3 ++- regtests/docker-compose.yml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/regtests/README.md b/regtests/README.md index 7a51160b8..884e9b991 100644 --- a/regtests/README.md +++ b/regtests/README.md @@ -85,12 +85,13 @@ project, just run: env POLARIS_HOST=localhost ./regtests/run.sh ``` -The catalog federation tests rely on the following configurations in `application.properties` to +The catalog federation tests and some cloud providers test rely on the following configurations in `application.properties` to be set in order to succeed. ``` polaris.features."ENABLE_CATALOG_FEDERATION"=true polaris.features."ALLOW_OVERLAPPING_CATALOG_URLS"=true +polaris.features."ALLOW_NAMESPACE_CUSTOM_LOCATION"=true ``` To run the tests in verbose mode, with test stdout printing to console, set the `VERBOSE` diff --git a/regtests/docker-compose.yml b/regtests/docker-compose.yml index fb118fdea..e7afd0513 100644 --- a/regtests/docker-compose.yml +++ b/regtests/docker-compose.yml @@ -38,6 +38,7 @@ services: polaris.features."ALLOW_INSECURE_STORAGE_TYPES": "true" polaris.features."SUPPORTED_CATALOG_STORAGE_TYPES": "[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]" polaris.features."ALLOW_OVERLAPPING_CATALOG_URLS": "true" + polaris.features."ALLOW_NAMESPACE_CUSTOM_LOCATION": "true" polaris.features."ENABLE_CATALOG_FEDERATION": "true" polaris.readiness.ignore-severe-issues: "true" volumes:
