fluent-plugin-syslog-gobi-tls 2.1.31 → 2.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fluent-plugin-syslog-tls.gemspec +1 -1
- data/lib/syslog_tls/ssl_transport.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fd87297c4b2f5b4ba6ccaab5efa4442257e068d493073d5e667c967d682e6be
|
|
4
|
+
data.tar.gz: a7cd26a3634f33886a41836b6a306a5ffaf765b1420663a6327181819253fe56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7ac4a730b7b31ccdb937194be77852e571a705981901ddf649e3b6f21f9aff13852f3e86d1013e9c8d8d456faa1bf3f91967d0e9b4f5c709763509f02f7bb2d
|
|
7
|
+
data.tar.gz: 076b32956c407c81455f732ccada94dd4bf0dab4f09bac062310e5fdf194ffc6330b6bc7d131ab1474f459d571d9d1491906d9864fb001501140fceabd0366f4
|
|
@@ -19,7 +19,7 @@ require 'syslog_tls/version'
|
|
|
19
19
|
|
|
20
20
|
Gem::Specification.new do |s|
|
|
21
21
|
s.name = 'fluent-plugin-syslog-gobi-tls'
|
|
22
|
-
s.version = '2.1.
|
|
22
|
+
s.version = '2.1.32'
|
|
23
23
|
s.authors = ['thomas morgan']
|
|
24
24
|
s.email = ['tm@iprog.com']
|
|
25
25
|
s.summary = %q{Fluent Syslog TLS output plugin}
|
|
@@ -179,7 +179,7 @@ module SyslogTls
|
|
|
179
179
|
def select_with_timeout(tcp, type)
|
|
180
180
|
|
|
181
181
|
host_ip_port = host + ":" + port.to_s
|
|
182
|
-
pp "initialize SSLTransport.select_with_timeout :: " + host_ip_port
|
|
182
|
+
pp "1: initialize SSLTransport.select_with_timeout :: " + host_ip_port
|
|
183
183
|
|
|
184
184
|
case type
|
|
185
185
|
when :connect_read
|
|
@@ -193,8 +193,11 @@ module SyslogTls
|
|
|
193
193
|
else
|
|
194
194
|
raise "Unknown select type #{type}"
|
|
195
195
|
end
|
|
196
|
+
pp "2: initialize SSLTransport.select_with_timeout :: " + host_ip_port
|
|
196
197
|
if can_write(host_ip_port) == 1
|
|
198
|
+
pp "3: initialize SSLTransport.select_with_timeout :: " + host_ip_port
|
|
197
199
|
if IO.select(*args)
|
|
200
|
+
pp "4: initialize SSLTransport.select_with_timeout :: " + host_ip_port
|
|
198
201
|
reset_tries(host_ip_port)
|
|
199
202
|
else
|
|
200
203
|
increase_retry(host_ip_port)
|