logstash-output-tcp 3.2.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4389bec372bcd792d65085047d3e61e809062ace
4
- data.tar.gz: 17a8ec05a14153a46f187a47fb88ae1b032692bb
3
+ metadata.gz: 3ac491b4801b8860dff6b4864d0854b15a365d7b
4
+ data.tar.gz: cf51a4dab3eb2436a5a77622564719b8f7a98a35
5
5
  SHA512:
6
- metadata.gz: 45b25dac4c91cdf81bcdfb3cfc1129078d429f484f16bf2924388064168b935aed561e7243bdfb2a85a4808ee7ff73dce276c4c9854ce3f33c853fe51b4a3e9d
7
- data.tar.gz: 350ce2abbc36f8d1b0291ecfd1c772da8494b12bfe27e0a209d8648151f4a4e2d84c3a47454d25eb43acbf61d15685cf26d28e58e18ed0c5807c707a608720fd
6
+ metadata.gz: 3d27fc4675b75ff1078a896bc97c3e09c4e5457217999ee39339c59d5e368900a27b509fee7516fb2b91241352bbec3476bfaf6e02f0ec62c688b5267ac24d7c
7
+ data.tar.gz: c2194f56e236d5711d47a06d089f3adf046532d8619348e158f8aad4718a7abebdc5266fd56932093071e11b2fb7a5db6ef825fb35912bf1792c090e986702e0
@@ -1,5 +1,6 @@
1
- ## 3.2.0
2
- - Added SSL support to this plugin (@michaelweiser)
1
+ ## 4.0.0
2
+ - Remove deprecated `workers_not_supported` call
3
+ - Use concurrency :single
3
4
 
4
5
  ## 3.1.1
5
6
  - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
@@ -13,6 +13,7 @@ require "logstash/util/socket_peer"
13
13
  class LogStash::Outputs::Tcp < LogStash::Outputs::Base
14
14
 
15
15
  config_name "tcp"
16
+ concurrency :single
16
17
 
17
18
  default :codec, "json"
18
19
 
@@ -115,8 +116,6 @@ class LogStash::Outputs::Tcp < LogStash::Outputs::Base
115
116
  end # @ssl_enable
116
117
 
117
118
  if server?
118
- workers_not_supported
119
-
120
119
  @logger.info("Starting tcp output listener", :address => "#{@host}:#{@port}")
121
120
  begin
122
121
  @server_socket = TCPServer.new(@host, @port)
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-tcp'
4
- s.version = '3.2.0'
4
+ s.version = '4.0.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Write events over a TCP socket."
7
7
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-tcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-05 00:00:00.000000000 Z
11
+ date: 2016-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement