Skip to content
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

uninitialized constant LogStash::Inputs::Http::Base64 #17

Closed
arabold opened this issue Jul 23, 2015 · 1 comment
Closed

uninitialized constant LogStash::Inputs::Http::Base64 #17

arabold opened this issue Jul 23, 2015 · 1 comment

Comments

@arabold
Copy link

arabold commented Jul 23, 2015

I'm using Logstash 1.5.3 and was trying a very simple Logstash configuration. However, when starting up Logstash throws an error: uninitialized constant LogStash::Inputs::Http::Base64.

Here's my config:

input {

  syslog {
    type => "syslog"
    port => 5544
    tags => []
    add_field => {
      "index" => "syslog"
    }
  }

  http {
    type => "http"
    port => 8080
    user => "logstash"
    password => "*******"
    tags => [ "webhook" ]
  }

}

# Add your filters here
filter {

}

output {
  # Trying to debug things? Enable the stdout output plugin
  stdout {
    codec => rubydebug
  }
}

What am I doing wrong here?

wiibaa added a commit to wiibaa/logstash-input-http that referenced this issue Jul 24, 2015
As reported in logstash-plugins#17, http basic auth is unusable due to this missing required.
This is not catched by the specs because base64 is transitively loaded when requiring ftw (used as a dev dependency)
jordansissel pushed a commit that referenced this issue Jul 24, 2015
As reported in #17, http basic auth is unusable due to this missing required.
This is not catched by the specs because base64 is transitively loaded when requiring ftw (used as a dev dependency)

Fixes #18
@suyograo
Copy link
Contributor

Fixed via #18. Thanks @wiibaa @arabold

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants