fluent-plugin-secure-forward 0.3.3dev1 → 0.3.3dev2
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/output_node.rb +5 -2
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38fb1038da46d346bb5ffa749bada1d09ae921a6
|
|
4
|
+
data.tar.gz: 3ffc89b139fd68f9a64b8babff12ada6613644f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ade64ee8b5df2b601059f54cb345ea22a9d05627ba06edb21ca2279e7a037e477a34ec7f059cac61cae7407a58ad622492402ae2802d36683fecf6b916b497d7
|
|
7
|
+
data.tar.gz: 3d66cf86ddcce251ad2e2668b54897c1beb01ac99bd6f912a11d3d110753edcdd76b14b9db24f54b933f20a3c8b808732ce7182f684b6dd3a9a3f517d405268c
|
|
@@ -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.3.
|
|
4
|
+
gem.version = "0.3.3dev2"
|
|
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}
|
|
@@ -322,8 +322,11 @@ class Fluent::SecureForwardOutput::Node
|
|
|
322
322
|
rescue OpenSSL::SSL::SSLError
|
|
323
323
|
# to wait i/o restart
|
|
324
324
|
sleep socket_interval
|
|
325
|
-
rescue
|
|
326
|
-
log.warn "disconnected
|
|
325
|
+
rescue SystemCallError => e
|
|
326
|
+
log.warn "disconnected by Error", error_class: e.class, error: e, host: @host, port: @port
|
|
327
|
+
break
|
|
328
|
+
rescue EOFError
|
|
329
|
+
log.warn "disconnected", host: @host, port: @port
|
|
327
330
|
break
|
|
328
331
|
end
|
|
329
332
|
end
|
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.3.
|
|
4
|
+
version: 0.3.3dev2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- TAGOMORI Satoshi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -145,4 +145,3 @@ test_files:
|
|
|
145
145
|
- test/plugin/test_in_secure_forward.rb
|
|
146
146
|
- test/plugin/test_input_session.rb
|
|
147
147
|
- test/plugin/test_out_secure_forward.rb
|
|
148
|
-
has_rdoc:
|