fluent-plugin-syslog-gobi-tls 2.1.20 → 2.1.21

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: 4971e0a129f77a7ba290f3cfaa18e0f79e47c87f481de7760282cdf4f5c5d2b9
4
- data.tar.gz: de0f0d192d5cd0007f4dfac63c02e19306ea4c9afd839ee9fa8b8b138f4217f4
3
+ metadata.gz: 88988fa5a366b262eaf47ca30b2ac0d9cf0e6ff058c97bb0ab8b5d1252bab789
4
+ data.tar.gz: 2d8642ac3bfb8fd70e74ebb2b53fb11eec7ce8b8bac5b1174972128adf0b67a7
5
5
  SHA512:
6
- metadata.gz: 6143b96c29cf2f7af0014cb03163fedb47d3aaccf09a53b5e3b38d12cde87b6d1bb67658a2623ba034fd9fe982730b68a46d0ed4aff13a20854c3b42b24a7bfb
7
- data.tar.gz: 948fdc78d4d0dd9c9b72a0685c738d3500747b2cb67946ece82d58edaa8fcd446c26e805a219817db398947f1955bccb43f4642e38f4a1477c666ebb8a198eb4
6
+ metadata.gz: 3e4f1da8dcdeabcfe6a92bfca26db8d73393ae2c0de4b6a3ff080f2c7ee8a7ffdcf0dacb3cfe7daac9197f3ded5bbe8eca5bfe864beae450226aaf2a484d1b85
7
+ data.tar.gz: 02aa4071e2eadf4692461799336fd6da2a31ec77aa47f4f84bcf1a155d9bd3de6b546fc7f5bdf97075f55353aa6380fe7064a39e8cbd4378a496c6b882912a16
@@ -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.20'
22
+ s.version = '2.1.21'
23
23
  s.summary = %q{Fluent Syslog TLS output plugin}
24
24
  s.authors = ['thomas morgan']
25
25
  s.email = ['tm@iprog.com']
@@ -50,8 +50,12 @@ module SyslogTls
50
50
  @socket = get_ssl_connection
51
51
  begin
52
52
  begin
53
+ timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
54
+ puts "[#{timestamp}] in connect doing connect_nonblock"
53
55
  @socket.connect_nonblock
54
- rescue Errno::EAGAIN, Errno::EWOULDBLOCK, IO::WaitReadable
56
+ rescue Errno::EAGAIN, Errno::EWOULDBLOCK, IO::WaitReadable => e
57
+ timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
58
+ puts "[#{timestamp}] in connect EAGAIN rescue: #{e.class} exception #{e.message} "
55
59
  select_with_timeout(@socket, :connect_read) && retry
56
60
  rescue IO::WaitWritable
57
61
  select_with_timeout(@socket, :connect_write) && retry
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.20
4
+ version: 2.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - thomas morgan