This is an automated email from the ASF dual-hosted git repository.

yufei 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 7961fdd21 Fix the manual test broken by PR #1532 (#1688)
7961fdd21 is described below

commit 7961fdd21114c8f6a7c9ff0e86bcb97aeedd170c
Author: Yufei Gu <[email protected]>
AuthorDate: Tue May 27 18:26:56 2025 -0700

    Fix the manual test broken by PR #1532 (#1688)
---
 quarkus/server/build.gradle.kts | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/quarkus/server/build.gradle.kts b/quarkus/server/build.gradle.kts
index b486914c4..7b33d4a99 100644
--- a/quarkus/server/build.gradle.kts
+++ b/quarkus/server/build.gradle.kts
@@ -76,7 +76,13 @@ tasks.register("run") { dependsOn("quarkusRun") }
 
 tasks.named<QuarkusRun>("quarkusRun") {
   jvmArgs =
-    listOf("-Dpolaris.bootstrap.credentials=POLARIS,root,secret", 
"-Dquarkus.console.color=true")
+    listOf(
+      "-Dpolaris.bootstrap.credentials=POLARIS,root,secret",
+      "-Dquarkus.console.color=true",
+      "-Dpolaris.features.\"ALLOW_INSECURE_STORAGE_TYPES\"=true",
+      
"-Dpolaris.features.\"SUPPORTED_CATALOG_STORAGE_TYPES\"=[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]",
+      "-Dpolaris.readiness.ignore-severe-issues=true",
+    )
 }
 
 val quarkusBuild = tasks.named<QuarkusBuild>("quarkusBuild")

Reply via email to