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
Any configuration that doesn't mention host, port, or use_ssl uses the default values of localhost, 9200, and False which can be super confusing in some situations! Proposed change is to make it impossible to configure a client with inference unless using the default client Elasticsearch().
So the following configurations would be disallowed:
Currently all of the following methods for configuring clients work in 7.x:
Any configuration that doesn't mention
host
,port
, oruse_ssl
uses the default values oflocalhost
,9200
, andFalse
which can be super confusing in some situations! Proposed change is to make it impossible to configure a client with inference unless using the default clientElasticsearch()
.So the following configurations would be disallowed:
and the following will be allowed:
The text was updated successfully, but these errors were encountered: