fluent-plugin-syslog-gobi-tls 2.1.22 → 2.1.24

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
  SHA256:
3
- metadata.gz: b62abd71ee14fcaa7a3776e147c4e8f838986b0a590061831c64b99e7da074bf
4
- data.tar.gz: 8528e7e1de2a0a82fb79a873c33707bc3f44c22c305103d48b5d0441f621fa68
3
+ metadata.gz: b325bd5542950ceeb1cd9ee31a67198d1c268451c8657941bfee70951ea1ffda
4
+ data.tar.gz: d17370cfd8e1c2ce3d470d875dc1b926d6313f639797fefd3d60172ef897f018
5
5
  SHA512:
6
- metadata.gz: 24776cb28d84a3f7ff4275c56e48e9218ecc619703b697bb2d2d087b0ab68a9ee09f182f65a4bac3322803b72c63ce8ffa0b4018ae9b65fdcb807df16d17226f
7
- data.tar.gz: 64d9e2384473e4c055f784afc546a705c1eec8d762a455b0408a0404a5b7587c2add2b5e3c409f5c802dc05daf414c87fefd5aa0c32afe1e37b4f29665d1b9a5
6
+ metadata.gz: 3b9eed5633bddc000a834618ea8335325101151c47bb5ca4646f71aeaf9edf4726a62f080fd065b90e00d3cc233d897e957e3c6626667b0a7b4cc096860418f1
7
+ data.tar.gz: e940d6e37f835e579ce87432c0c031c4e757884cf33dced897d345386531f3d65fbe1793ee19c345b1131c6d2f1c9496f7b18a76ea04168d05da378e0a778917
@@ -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'
22
+ s.version = '2.1.24'
23
23
  s.summary = %q{Fluent Syslog TLS output plugin}
24
24
  s.authors = ['thomas morgan']
25
25
  s.email = ['tm@iprog.com']
@@ -84,7 +84,7 @@ module SyslogTls
84
84
  tcp.setsockopt(Socket::SOL_SOCKET, Socket::Constants::SO_REUSEADDR, true)
85
85
  tcp.setsockopt(Socket::SOL_SOCKET, Socket::Constants::SO_REUSEPORT, true)
86
86
  tcp.connect_nonblock(sock_addr)
87
- rescue Errno::EINPROGRESS
87
+ rescue Errno::EINPROGRESS => e
88
88
  timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
89
89
  puts "[#{timestamp}] in get_tcp_connection EINPROGRESS exception during TCP connection:"
90
90
  puts "[#{timestamp}] Message: #{e.message}"
@@ -97,14 +97,14 @@ module SyslogTls
97
97
  timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
98
98
  puts "[#{timestamp}] in get_tcp_connection in EISCONN"
99
99
  # all good
100
- rescue SystemCallError
100
+ rescue SystemCallError => e
101
101
  timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
102
102
  puts "[#{timestamp}] in get_tcp_connection SystemCallError exception during TCP connection:"
103
103
  puts "[#{timestamp}] Message: #{e.message}"
104
104
  tcp.close rescue nil
105
105
  raise
106
106
  end
107
- rescue SystemCallError
107
+ rescue SystemCallError => e
108
108
  timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
109
109
  puts "[#{timestamp}] in get_tcp_connection SystemCallError outer exception during TCP connection:"
110
110
  puts "[#{timestamp}] Message: #{e.message}"
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.22
4
+ version: 2.1.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - thomas morgan