We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's not possible to use different instances of Flyway, since the names specified in the following code:
{ ...use(new Flywaydb("flyway.db1"); ...use(new Flywaydb("flyway.db2"); }
are always ignored and Jooby (or rather Guice) complains about multiple bindings of Flyway:
A binding to org.flywaydb.core.Flyway was already configured at org.jooby.flyway.Flywaydb.configure(Flywaydb.java:183).
The text was updated successfully, but these errors were encountered:
819ba0a
Merge pull request #634 from jooby-project/623
ecd3448
Flyway is not instantiated by using Named annotation fix #623
No branches or pull requests
It's not possible to use different instances of Flyway, since the names specified in the following code:
are always ignored and Jooby (or rather Guice) complains about multiple bindings of Flyway:
A binding to org.flywaydb.core.Flyway was already configured at org.jooby.flyway.Flywaydb.configure(Flywaydb.java:183).
The text was updated successfully, but these errors were encountered: