-
Notifications
You must be signed in to change notification settings - Fork 66
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
Manticore eager setting cannot be changed and does not work in all cases #87
Comments
Yes! We would gladly accept it. I'm on the fence about defaulting it one way or the other. For common Logstash use cases turning it off would double the number of requests. |
I was hoping to get away with literally just setting
And then i'd be able to access that from the
? And it looks like the Does that sound about right? So will need to get a release of |
Yes, you'd need to add it to the mixin. You can actually just open an issue there, link to it here, and close this issue. |
You're right, by the way, about the config stuff. |
In
normalize_request
when buildingspec[:auth]
the settingeager
is set totrue
. It cannot be changed from logstash configuration. In my case a third party server i don't control is configured to only do digest auth and we send basic auth instead, which breaks on the servers side. If i hand patcheager: true
toeager: false
it works.manticore
itself advocates for it to befalse
in most cases - from itsCHANGELOG
:Would you accept a pull request to set
eager
tofalse
?The text was updated successfully, but these errors were encountered: