-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
SQL: the invalid url error message should be in line with the documentation #56476
Labels
Comments
Pinging @elastic/es-ql (:Query Languages/SQL) |
matriv
added a commit
to matriv/elasticsearch
that referenced
this issue
May 12, 2020
The docs pattern url was using `*` which means zero or many instead of `?` which means zero or one. The pattern url returned in error messages was not in sync with the one in the docs. Fixes: elastic#56476
matriv
added a commit
that referenced
this issue
May 13, 2020
The docs pattern url was using `*` which means zero or many instead of `?` which means zero or one. The pattern url returned in error messages was not in sync with the one in the docs. Fixes: #56476
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
We state in docs that the url format should be
jdbc:es://[[http|https]://]*[host[:port]]*/[prefix]*<[?[option=value]&]*
but if the url is indeed incorrect, the error message mentionsInvalid URL [jdbc:es://localhost:9200/?ssl=#5#], format should be [jdbc:es://[http|https]?[host[:port]]*/[prefix]*[?[option=value]&]*]
which is inaccurate.The text was updated successfully, but these errors were encountered: