fluent-plugin-secure-forward 0.1.4 → 0.1.5
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-secure-forward.gemspec +1 -1
- data/lib/fluent/plugin/out_secure_forward.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64016309918f63a9462dbab6d071830fc56b2373
|
|
4
|
+
data.tar.gz: 9d15b245fc91f65aa981b07f4ba4314b776ab768
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de4989d49db55c66edb76d19ae858e1bd27ae4eff7d9cbb135b2769cc562c4b995827396830ea38d3c967ee52d500b3dd3f5dac07be4c8defbdb7c70d1bd8f89
|
|
7
|
+
data.tar.gz: 29800b8562334d0e05bfd735d031a613972546499364dc2dfab2f6e0ef0a1ecf49874fa401ac4070ed6e82943872e9c69192854bfe82966ac75ca6ada40d7580
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
Gem::Specification.new do |gem|
|
|
3
3
|
gem.name = "fluent-plugin-secure-forward"
|
|
4
|
-
gem.version = "0.1.
|
|
4
|
+
gem.version = "0.1.5"
|
|
5
5
|
gem.authors = ["TAGOMORI Satoshi"]
|
|
6
6
|
gem.email = ["tagomoris@gmail.com"]
|
|
7
7
|
gem.summary = %q{Fluentd input/output plugin to forward over SSL with authentications}
|
|
@@ -173,7 +173,13 @@ module Fluent
|
|
|
173
173
|
send_data(node, tag, es)
|
|
174
174
|
rescue Errno::EPIPE, IOError, OpenSSL::SSL::SSLError => e
|
|
175
175
|
$log.warn "Failed to send messages to #{node.host}, parging.", :error_class => e.class, :error => e
|
|
176
|
-
|
|
176
|
+
begin
|
|
177
|
+
node.shutdown
|
|
178
|
+
rescue => e2
|
|
179
|
+
# ignore all errors
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
raise # to retry #write_objects
|
|
177
183
|
end
|
|
178
184
|
end
|
|
179
185
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-secure-forward
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-08-
|
|
11
|
+
date: 2013-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|