This is an automated email from the ASF dual-hosted git repository.
yzheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 46489da14 Fix CI (#3698)
46489da14 is described below
commit 46489da14be3d6d852b5988e8d9c7b64b01ad619
Author: Yong Zheng <[email protected]>
AuthorDate: Sat Feb 7 19:48:51 2026 -0600
Fix CI (#3698)
---
.../apache/polaris/service/it/PolarisRestCatalogRustFSIT.java | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git
a/runtime/service/src/intTest/java/org/apache/polaris/service/it/PolarisRestCatalogRustFSIT.java
b/runtime/service/src/intTest/java/org/apache/polaris/service/it/PolarisRestCatalogRustFSIT.java
index 8a93c23d6..a8322f244 100644
---
a/runtime/service/src/intTest/java/org/apache/polaris/service/it/PolarisRestCatalogRustFSIT.java
+++
b/runtime/service/src/intTest/java/org/apache/polaris/service/it/PolarisRestCatalogRustFSIT.java
@@ -34,6 +34,7 @@ import org.apache.polaris.test.rustfs.Rustfs;
import org.apache.polaris.test.rustfs.RustfsAccess;
import org.apache.polaris.test.rustfs.RustfsExtension;
import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.TestInfo;
import org.junit.jupiter.api.extension.ExtendWith;
@QuarkusIntegrationTest
@@ -89,4 +90,14 @@ public class PolarisRestCatalogRustFSIT extends
PolarisRestCatalogIntegrationBas
return storageConfig.build();
}
+
+ @Override
+ protected Map<String, String> extraCatalogProperties(TestInfo testInfo) {
+ return ImmutableMap.<String, String>builder()
+ .put(StorageAccessProperty.AWS_ENDPOINT.getPropertyName(), endpoint)
+ .put(StorageAccessProperty.AWS_PATH_STYLE_ACCESS.getPropertyName(),
"true")
+ .put(StorageAccessProperty.AWS_KEY_ID.getPropertyName(),
RUSTFS_ACCESS_KEY)
+ .put(StorageAccessProperty.AWS_SECRET_KEY.getPropertyName(),
RUSTFS_SECRET_KEY)
+ .build();
+ }
}