-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Rewrite multiple persistence unit documentation section for Hibernate Reactive #49287
New issue
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
Conversation
This comment has been minimized.
This comment has been minimized.
🙈 The PR is closed and the preview is expired. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! A few comments below, but otherwise LGTM.
%prod.quarkus.datasource."named-datasource".username" = quarkus_test | ||
%prod.quarkus.datasource."named-datasource".password" = quarkus_test | ||
%prod.quarkus.datasource.reactive.url = vertx-reactive:postgresql://localhost/quarkus_test <1> | ||
quarkus.datasource."users".reactive=true <1> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure this is necessary? It's the default...
quarkus.datasource."users".username=hibernate_orm_test<1> Define a datasource named `users`. | ||
quarkus.datasource."users".password=hibernate_orm_test | ||
|
||
quarkus.datasource."inventory".reactive=true <2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure this is necessary? It's the default...
quarkus.datasource."inventory".username=hibernate_orm_test | ||
quarkus.datasource."inventory".password=hibernate_orm_test | ||
|
||
quarkus.hibernate-orm."users".schema-management.strategy=drop-and-create <3> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you sent other PRs previously, at my request, to avoid this kind of configuration which could result in a production database being dropped :)
Maybe see how it's done in quickstarts or the ORM documentation?
f28bf86
to
844473e
Compare
Status for workflow
|
Thanks! |
See #47631 (comment)
Original PR was missing the updates to the documentation
#46727 (comment)