fluent-plugin-syslog-gobi-tls 2.1.15 → 2.1.16
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 +2 -2
- 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: 3c2d387591fe9093d96dfbf685043fcab92c7ff8659fa4dd6a75d8007d609e3b
|
4
|
+
data.tar.gz: 06c6404a5d30c3d5cce6bfee75b44d674dce1125703f878f85b0c6e83b9e0004
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7161bef620349319586ffa3698411032fb64d2198b02b2eed1269f846dc32b94b2e3b47510d128e773354eedfd7fa67083093e43d8fd04bc42d4760d45f6c262
|
7
|
+
data.tar.gz: 48b55f6eae0c446d9663c7af7ff827c70e1d04c461af28ede88889c6e8bd516caa08a3bc6f7b8f89e08ad98df0c4b42111e818d5b99e3a569d51f911d7f38a8c
|
@@ -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.16'
|
23
23
|
s.summary = %q{Fluent Syslog TLS output plugin}
|
24
24
|
s.authors = ['thomas morgan']
|
25
25
|
s.email = ['tm@iprog.com']
|
@@ -55,11 +55,11 @@ module SyslogTls
|
|
55
55
|
@socket.connect_nonblock
|
56
56
|
rescue Errno::EAGAIN, Errno::EWOULDBLOCK, IO::WaitReadable => e
|
57
57
|
timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
|
58
|
-
puts "[#{timestamp}] in connect EAGAIN rescue: #{e.class} exception
|
58
|
+
puts "[#{timestamp}] in connect EAGAIN rescue: #{e.class} exception #{e.message} "
|
59
59
|
select_with_timeout(@socket, :connect_read) && retry
|
60
60
|
rescue IO::WaitWritable => e
|
61
61
|
timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
|
62
|
-
puts "[#{timestamp}] in connect WaitWritable rescue: #{e.class} exception
|
62
|
+
puts "[#{timestamp}] in connect WaitWritable rescue: #{e.class} exception #{e.message} "
|
63
63
|
select_with_timeout(@socket, :connect_write) && retry
|
64
64
|
end
|
65
65
|
rescue Errno::ETIMEDOUT
|