fluent-plugin-syslog_rfc5424 0.7.2.alpha2 → 0.7.2.alpha3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fluent-plugin-syslog_rfc5424.gemspec +1 -1
- data/lib/fluent/plugin/out_syslog_rfc5424.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2307a55fe6d2984a6931ff02d660997349df5bf3
|
4
|
+
data.tar.gz: 8f3c16fc988e957dc81d9f9d9d69bb0a3e0c6ddf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3622b032be3e5bafe3bfef06adf111949e4abe17cc4f55918065a9655071f260d22fba9e07c48e5fbcf8be0f626d79a0dae2b06d06c9f3efe032a720d496e83
|
7
|
+
data.tar.gz: da505a4806082334b2e53166cbba488875ca4b4ba8a7ae1c58ac491922c3d5b2ecf9e53c36f3c6a3cf1d998e3012f47788d5c7a4c39e15d149658e68811411ef
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "fluent-plugin-syslog_rfc5424"
|
7
|
-
spec.version = "0.7.2.
|
7
|
+
spec.version = "0.7.2.alpha3"
|
8
8
|
spec.authors = ["Pivotal"]
|
9
9
|
spec.email = %w(cf-loggregator@pivotal.io)
|
10
10
|
spec.homepage = "https://github.com/cloudfoundry/fluent-plugin-syslog_rfc5424"
|
@@ -55,7 +55,7 @@ module Fluent
|
|
55
55
|
def socket_options
|
56
56
|
return {} unless @transport == 'tls'
|
57
57
|
|
58
|
-
{ insecure: @insecure, verify_fqdn: !@insecure, cert_paths: @trusted_ca_path }
|
58
|
+
{ insecure: @insecure, verify_fqdn: !@insecure, cert_paths: @trusted_ca_path, connection_timeout: 10, send_timeout: 10, recv_timeout: 10, linger_timeout: 10 }
|
59
59
|
end
|
60
60
|
|
61
61
|
def socket_key(transport, host, port)
|