We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7141600 commit 97ac188Copy full SHA for 97ac188
integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java
@@ -221,7 +221,9 @@ public void before(TestInfo testInfo) {
221
StorageConfigInfo storageConfig = getStorageConfigInfo();
222
URI testRuntimeURI = URI.create(storageConfig.getAllowedLocations().getFirst());
223
catalogBaseLocation = testRuntimeURI + "/" + CATALOG_LOCATION_SUBPATH;
224
- externalCatalogBase = URI.create(testRuntimeURI + "/" + EXTERNAL_CATALOG_LOCATION_SUBPATH);
+ externalCatalogBase =
225
+ URI.create(
226
+ testRuntimeURI + "/" + EXTERNAL_CATALOG_LOCATION_SUBPATH + "/" + method.getName());
227
228
Optional<CatalogConfig> catalogConfig =
229
Optional.ofNullable(method.getAnnotation(CatalogConfig.class));
0 commit comments