-
Notifications
You must be signed in to change notification settings - Fork 416
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
Added support for secure HTTPS xPack requests #119
Conversation
|
||
until curl -XGET $el_url; do | ||
until curl ${auth} -XGET $el_url; do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to follow the same style as the rest of the document for specifying the auth credentials:
curl -XGET $el_url ${auth}
Hi team, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi team,
today I tested a bit more deep this PR. Like I stated in my previous comment this PR dont break the normal behaviour but it has some errors that prevent the enablement of the "secure HTTPS xPack requests".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi team,
Have made some changes to corrected the errors, I have tested it again and no errors has been found.
Could be merged.
Regards.
Hello team,
This PR adds the ability to perform requests to the Elastic API in the case of xPack enabled.
Related issue: #50
Cheers