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
When creating a new ElasticSearch instance:
var es = new ElasticSearch("http://a.server:9200");
If the aUser and aPassword are not provided it will fail to create. The workaround is to include empty user and password:
var es = new ElasticSearch("http://a.server:9200", "", "");
By default it should consider user and password as empty for ElasticSearch installations that don't have authentication.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When creating a new ElasticSearch instance:
If the aUser and aPassword are not provided it will fail to create. The workaround is to include empty user and password:
By default it should consider user and password as empty for ElasticSearch installations that don't have authentication.
The text was updated successfully, but these errors were encountered: