From bb22cafe8e0a6ddcfa03fdae3fde24f3e07390cc Mon Sep 17 00:00:00 2001 From: Jordan Sissel Date: Mon, 14 Apr 2014 16:48:24 -0700 Subject: [PATCH] Copy-paste typo fix --- lib/logstash/outputs/elasticsearch.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logstash/outputs/elasticsearch.rb b/lib/logstash/outputs/elasticsearch.rb index f2f9bd8c0..30e5cfa59 100644 --- a/lib/logstash/outputs/elasticsearch.rb +++ b/lib/logstash/outputs/elasticsearch.rb @@ -303,7 +303,7 @@ class LogStash::Outputs::ElasticSearch < LogStash::Outputs::Base #builder.local(true) builder.settings.put("cluster.name", @cluster) if @cluster builder.settings.put("node.name", @node_name) if @node_name - builder.settings.put("network.host") = @bind_host if @bind_host + builder.settings.put("network.host", @bind_host) if @bind_host builder.settings.put("http.port", @embedded_http_port) @embedded_elasticsearch = builder.node