Skip to content

Commit

Permalink
feat: allow setting schema to null
Browse files Browse the repository at this point in the history
  • Loading branch information
f-necas committed Mar 22, 2024
1 parent cba21b4 commit a9cf1ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ CollectionRepository postgisDataStoreCollectionRepository(DataStoreProvider dsPr

@Bean(name = "indexDataStore")
@DependsOn("databaseStartupValidator")
DataStoreProvider postgisDataStore(DataSource dataSource, @Value("${postgres.schema:opendataindex}") String schema)
DataStoreProvider postgisDataStore(DataSource dataSource, @Value("${postgres.schema:}") String schema)
throws IOException {
log.info("Schema used : " + schema);
Map<String, Object> params = Map.of(//
Expand Down

0 comments on commit a9cf1ee

Please sign in to comment.