fluent-plugin-syslog-gobi-tls 2.1.26 → 2.1.27

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: 3b21a2944e0cf5c885b37f52dc57327dafdde5b035f602ee5ead03d9f7a7cc20
4
- data.tar.gz: b77c65891c59e00b798b7c63fab5603997b27a81f1c8e70423fa0257ea91a104
3
+ metadata.gz: 05dba789739e7d17d93ec0b6834f44f483c81110c0b7a3049b05d4363f4887c6
4
+ data.tar.gz: bebec7c5ce38b10f59703fb198a36cbcfe9f288f56185ad1731c917ddcc02be6
5
5
  SHA512:
6
- metadata.gz: 9894a89cd0c93da9fcacc09f1eaf363e5a24bb4fd9c8d13eaff84a54995a3e4b5652a341b5ee734e76be4910df7ba4cec5425f028e08b0dde7e3a67162b4db90
7
- data.tar.gz: c3514c96293b2e76bd74e12d011421f6b1ef87042fdaa63fcf015f3c0d02b4d266b5069ead0a00272db0e89bcc4c0a54aafd78742a99f3d89a728857b9dcbf8d
6
+ metadata.gz: 0271e8be2d6a57ae2ebea8f4141a7c621e07840e06c884317f6fb0d5a04d53d8f9f80aa61672c254d14861f2967e5e27a4fb2c6d68da589f895e3950c8cf27a8
7
+ data.tar.gz: e3d831b0a3cdeffce687482a6bc8b22ed6882c69404b7b808d785439b214ce459f0b87712f192276c5838fa938973ea894e26cec0b8c54fdac622c180288f973
@@ -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.26'
22
+ s.version = '2.1.27'
23
23
  s.summary = %q{Fluent Syslog TLS output plugin}
24
24
  s.authors = ['thomas morgan']
25
25
  s.email = ['tm@iprog.com']
@@ -88,6 +88,11 @@ module SyslogTls
88
88
  tcp.setsockopt(Socket::SOL_SOCKET, Socket::Constants::SO_REUSEADDR, true)
89
89
  tcp.setsockopt(Socket::SOL_SOCKET, Socket::Constants::SO_REUSEPORT, true)
90
90
  tcp.connect_nonblock(sock_addr)
91
+ rescue Errno::ECONNREFUSED => e
92
+ timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
93
+ puts "[#{timestamp}] in get_tcp_connection ECONNREFUSED exception during TCP connection:"
94
+ tcp.close rescue nil
95
+ raise
91
96
  rescue Errno::EINPROGRESS => e
92
97
  timestamp = Time.now.strftime("%Y-%m-%d %H:%M:%S")
93
98
  puts "[#{timestamp}] in get_tcp_connection EINPROGRESS exception during TCP connection:"
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.26
4
+ version: 2.1.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - thomas morgan