Skip to content

Commit 7961fdd

Browse files
authored
Fix the manual test broken by PR #1532 (#1688)
1 parent 408389f commit 7961fdd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

quarkus/server/build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,13 @@ tasks.register("run") { dependsOn("quarkusRun") }
7676

7777
tasks.named<QuarkusRun>("quarkusRun") {
7878
jvmArgs =
79-
listOf("-Dpolaris.bootstrap.credentials=POLARIS,root,secret", "-Dquarkus.console.color=true")
79+
listOf(
80+
"-Dpolaris.bootstrap.credentials=POLARIS,root,secret",
81+
"-Dquarkus.console.color=true",
82+
"-Dpolaris.features.\"ALLOW_INSECURE_STORAGE_TYPES\"=true",
83+
"-Dpolaris.features.\"SUPPORTED_CATALOG_STORAGE_TYPES\"=[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]",
84+
"-Dpolaris.readiness.ignore-severe-issues=true",
85+
)
8086
}
8187

8288
val quarkusBuild = tasks.named<QuarkusBuild>("quarkusBuild")

0 commit comments

Comments
 (0)