Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
H2 Storage backend support for canton jdbc urls with user/password (#…
…10523) * H2 Storage backend support for canton jdbc urls with user/password The H2 database's JdbcDataSource does not like seeing user/password properties in the jdbc url raising errors upon hikari connection pool initialization: `org.h2.jdbc.JdbcSQLNonTransientConnectionException: Duplicate property "USER"` expecting to be able to set user and password separately from passing on the jdbc url. As h2 is not supported in production and to get canton integration tests past this resorting to parsing the jdbc url looking for user/password properties, removing them from the url and instead setting them explicitly on the data source object. changelog_begin changelog_end * Review feedback
- Loading branch information