dropwizard / dropwizard-jdbi

Dropwizard JDBI v2 support
Apache License 2.0
1 stars 7 forks source link

Fix failing JodaDateTimeSqlTimestampTest #4

Closed cleiner closed 4 years ago

cleiner commented 4 years ago

Database would not spin up due to the -tcpShutdown parameter which is used to stop an already running instance (and it had a leading blank that H2's argument parser didn't like).

After removing the parameter, the test would run, but fail to shutdown the database, because H2 1.4.200 does not allow an empty management DB password anymore (see https://h2database.com/html/changelog.html).

Fixes #3

joschi commented 4 years ago

@cleiner Awesome, thanks for your contribution!