Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
azahnen committed Oct 9, 2024
1 parent f07da56 commit bd4de30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xtracfg/src/main/java/de/ii/xtraplatform/cli/AutoHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ private static FeatureProviderDataV2 parseFeatureProviderPgis(

builder
.connectionInfoBuilder()
.dialect(ConnectionInfoSql.Dialect.PGIS)
.dialect(ConnectionInfoSql.Dialect.PGIS.name())
.host(Optional.ofNullable(parameters.get("host")))
.database(parameters.get("database"))
.user(Optional.ofNullable(parameters.get("user")))
Expand All @@ -266,7 +266,7 @@ private static FeatureProviderDataV2 parseFeatureProviderGpkg(

builder
.connectionInfoBuilder()
.dialect(ConnectionInfoSql.Dialect.GPKG)
.dialect(ConnectionInfoSql.Dialect.GPKG.name())
.database(parameters.get("database"))
.poolBuilder();

Expand Down

0 comments on commit bd4de30

Please sign in to comment.