fluent-plugin-syslog_rfc5424 0.7.2.alpha2 → 0.7.2.alpha3

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
  SHA1:
3
- metadata.gz: 38e0c8dd82d0fa62581db8ceb66cf9863e52f916
4
- data.tar.gz: e350bbf11a77fd2cb79db170d51b2ee68b9c9c3f
3
+ metadata.gz: 2307a55fe6d2984a6931ff02d660997349df5bf3
4
+ data.tar.gz: 8f3c16fc988e957dc81d9f9d9d69bb0a3e0c6ddf
5
5
  SHA512:
6
- metadata.gz: 464ed2cef8c2e5a333cf0f7eaf0f4f81b785e514be00d75c79fd18610dd8f5558c8ea25c820ca6e08d09ae400ba2544f1c827e252568ab2b87df08a9e01abead
7
- data.tar.gz: 49542db0eb904a8b6e0360ec6d79220a15132c6fbcf806678a5c92b53bef27d80d941dbc7fcee3069d3117610eba8c45c9d9bb22bedadb94507b96e3eaff3cd7
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.alpha2"
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-syslog_rfc5424
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2.alpha2
4
+ version: 0.7.2.alpha3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pivotal