fluent-plugin-secure-forward 0.1.3 → 0.1.4
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 +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1567af0d3418360937abda3edf5296d8e853f8a
|
|
4
|
+
data.tar.gz: 2aa1abc7f6e8a4cb445022138b0737a07dace6bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afed6125af40082216107d0ff6cee4a164bb67944478871c158543bec60b4d49590b50603ddf69d7b9762f7c5bfd629d19f586641bf1f1d69a5f25e9d52902e2
|
|
7
|
+
data.tar.gz: 1bc009baff18ce316f417862ac3286ce0fb33c9a655201f82d78208962e8cc2b25a1bce0d5d94f8f6f2361a88877c57548ce6a9a9d8ccbd058a103fc31d29190
|
|
@@ -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.4"
|
|
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}
|
|
@@ -44,11 +44,13 @@ class Fluent::SecureForwardOutput::Node
|
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
def dup
|
|
47
|
-
self.class.new(
|
|
47
|
+
renewed = self.class.new(
|
|
48
48
|
@sender,
|
|
49
49
|
@shared_key,
|
|
50
50
|
{'host' => @host, 'port' => @port, 'hostlabel' => @hostlabel, 'username' => @username, 'password' => @password}
|
|
51
51
|
)
|
|
52
|
+
renewed.keepalive = @keepalive if @keepalive
|
|
53
|
+
renewed
|
|
52
54
|
end
|
|
53
55
|
|
|
54
56
|
def start
|
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.4
|
|
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-
|
|
11
|
+
date: 2013-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
115
115
|
version: '0'
|
|
116
116
|
requirements: []
|
|
117
117
|
rubyforge_project:
|
|
118
|
-
rubygems_version: 2.0.
|
|
118
|
+
rubygems_version: 2.0.3
|
|
119
119
|
signing_key:
|
|
120
120
|
specification_version: 4
|
|
121
121
|
summary: Fluentd input/output plugin to forward over SSL with authentications
|