From ce4f31a8c396f20a6295ed99f0b4bae4222d962d Mon Sep 17 00:00:00 2001 From: Yoshiyuki Tabata Date: Fri, 16 Apr 2021 14:47:34 +0900 Subject: [PATCH] KEYCLOAK-17801 Help message for DB is incorrect --- .../main/java/org/keycloak/configuration/PropertyMappers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quarkus/runtime/src/main/java/org/keycloak/configuration/PropertyMappers.java b/quarkus/runtime/src/main/java/org/keycloak/configuration/PropertyMappers.java index 6e1b8ca6b0..0f07ad7de2 100644 --- a/quarkus/runtime/src/main/java/org/keycloak/configuration/PropertyMappers.java +++ b/quarkus/runtime/src/main/java/org/keycloak/configuration/PropertyMappers.java @@ -128,7 +128,7 @@ public final class PropertyMappers { } addInitializationException(invalidDatabaseVendor(db, "h2-file", "h2-mem", "mariadb", "mysql", "postgres", "postgres-95", "postgres-10")); return "h2"; - }, "The database vendor. Possible values are: h2-mem, h2-file, mariadb, mysql, postgres95, postgres10."); + }, "The database vendor. Possible values are: h2-mem, h2-file, mariadb, mysql, postgres, postgres-95, postgres-10."); create("db", "quarkus.datasource.jdbc.transactions", (db, context) -> "xa", null); create("db.url", "db", "quarkus.datasource.jdbc.url", (value, context) -> Database.getDefaultUrl(value).orElse(value), "The database JDBC URL. If not provided a default URL is set based on the selected database vendor. For instance, if using 'postgres', the JDBC URL would be 'jdbc:postgresql://localhost/keycloak'. The host, database and properties can be overridden by setting the following system properties, respectively: -Dkc.db.url.host, -Dkc.db.url.database, -Dkc.db.url.properties."); create("db.username", "quarkus.datasource.username", "The database username.");