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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e196efd2063d6ae5894d0f08837a7244f6f079e86253fb28e5622f53f3915d38
4
- data.tar.gz: 6f63b49f7216216981e632f0f5449d76acd675c007bd775f51ca28ce32ac9926
3
+ metadata.gz: 3c2d387591fe9093d96dfbf685043fcab92c7ff8659fa4dd6a75d8007d609e3b
4
+ data.tar.gz: 06c6404a5d30c3d5cce6bfee75b44d674dce1125703f878f85b0c6e83b9e0004
5
5
  SHA512:
6
- metadata.gz: ef2edc80b26fdf6122101671c2d1605419797420dad0e44ddabfabd94ef1dd514a91ae1aabb18bbe392da5ac9a51f2c1ef596977735e7f0da79cc68cf105b9a8
7
- data.tar.gz: d64f19a16369c6aa59d97cb674c4824b6dc2ccf7b5553e17bd0f494a24f330c43867da9f2998481d2f7bfb305cad458ab8e7f22b3a41cbd8fe235e1728301999
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.15'
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 during #{type}: #{e.message} "
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 during #{type}: #{e.message} "
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-syslog-gobi-tls
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.15
4
+ version: 2.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - thomas morgan