Skip to content

Commit

Permalink
Bump to 2.0.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewvc authored and jordansissel committed Sep 1, 2015
1 parent 6e95c72 commit 5325240
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## 2.0.0-beta2
- Massive internal refactor of client handling
- Background HTTP sniffing support
- Reduced bulk request size to 500 from 5000 (better memory utilization)
- Removed 'host' config option. Now use 'hosts'

## 2.0.0-beta
- Only support HTTP Protocol
- Removed support for node and transport protocols (now in logstash-output-elasticsearch_java)

## 1.0.7
- Add update API support

Expand Down
2 changes: 1 addition & 1 deletion lib/logstash/outputs/elasticsearch/http_client.rb
Expand Up @@ -60,7 +60,7 @@ def start_sniffing!
@sniffer_thread = Thread.new do
loop do
sniff!
sleep (options[:sniffing_delay] || 30)
sleep (options[:sniffing_delay].to_f || 30)
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion logstash-output-elasticsearch.gemspec
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-output-elasticsearch'
s.version = '2.0.0-beta'
s.version = '2.0.0-beta2'
s.licenses = ['apache-2.0']
s.summary = "Logstash Output to Elasticsearch"
s.description = "Output events to elasticsearch"
Expand Down

0 comments on commit 5325240

Please sign in to comment.