You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If endpoint options like hostAddressesList, user & password are set, they get ignored because the the Quarkus generated RestClient bean gets autowired. Unless quarkus.elasticsearch config is provided, the client will default to connecting on localhost:9200 with no authentication.
The text was updated successfully, but these errors were encountered:
Unless we want to add native support for this extension, the simplest solution is to remove the quarkus-elasticsearch-rest-client dependency as it's not doing anything useful for us.
Else, it should be enough to only depend on quarkus-elasticsearch-rest-client-common, to avoid pulling in the entirety of Quarkus ES functionality.
Bug description
If endpoint options like
hostAddressesList
,user
&password
are set, they get ignored because the the Quarkus generatedRestClient
bean gets autowired. Unlessquarkus.elasticsearch
config is provided, the client will default to connecting onlocalhost:9200
with no authentication.The text was updated successfully, but these errors were encountered: