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
Current implementation
@Override public String getReactiveUrl() { return getHost().replace("http://", getJdbcName() + ":thin:@") + ":" + getPort() + ":" + getDatabase(); }
should be replaced with
@Override public String getReactiveUrl() { return getHost().replace("http://", getJdbcName() + ":thin:@") + ":" + getPort() + "/" + getDatabase(); }
(colon : replaced by slash /).
:
/
Proper syntax of reactive URL for Oracle DB is documented only partially.
An issue to clarify the topic: quarkusio/quarkus#26426.
As part of the implementation change, add test coverage for reactive URL.
Follow-up to: #428 #489
The text was updated successfully, but these errors were encountered:
sql-db/hibernate-reactive
sql-db/vertx-sql
oracle
I checked all getReactiveUrl() and can't find any with that colon anymore, so I'll go ahead and close the issue.
getReactiveUrl()
Sorry, something went wrong.
jsmrcka
No branches or pull requests
Current implementation
should be replaced with
(colon
:
replaced by slash/
).Proper syntax of reactive URL for Oracle DB is documented only partially.
An issue to clarify the topic: quarkusio/quarkus#26426.
As part of the implementation change, add test coverage for reactive URL.
Follow-up to:
#428
#489
The text was updated successfully, but these errors were encountered: