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
In AWS Ruby SDK V2, the proxy_uri option is changed to http_proxy.
http://docs.aws.amazon.com/sdkforruby/api/Aws/EC2/Client.html#initialize-instance_method https://forums.aws.amazon.com/thread.jspa?threadID=172034
Using the proxy_uri will cause ArgumentError: invalid configuration option `:proxy_uri' https://github.com/logstash-plugins/logstash-mixin-aws/blob/master/lib/logstash/plugin_mixins/aws_config/v2.rb#L20
A fix would be just changing:
opts[:proxy_uri] = @proxy_uri if @proxy_uri
to:
opts[:http_proxy] = @proxy_uri if @proxy_uri
The text was updated successfully, but these errors were encountered:
Released with v1.0.1 of this plugin. Thanks for finding this @wanghq!
Sorry, something went wrong.
andrewvc
No branches or pull requests
In AWS Ruby SDK V2, the proxy_uri option is changed to http_proxy.
http://docs.aws.amazon.com/sdkforruby/api/Aws/EC2/Client.html#initialize-instance_method
https://forums.aws.amazon.com/thread.jspa?threadID=172034
Using the proxy_uri will cause ArgumentError: invalid configuration option `:proxy_uri'
https://github.com/logstash-plugins/logstash-mixin-aws/blob/master/lib/logstash/plugin_mixins/aws_config/v2.rb#L20
A fix would be just changing:
to:
The text was updated successfully, but these errors were encountered: