envoy-proxy 0.0.18 → 0.0.19

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: cd7f202c771ae56bbbdd8161f8270e7151589ce2
4
- data.tar.gz: 4752dc703a61c4b7df5ce00fbc8ce834b293cf2e
3
+ metadata.gz: 0e84778b171d38b9693f61cd2490bec3650f4026
4
+ data.tar.gz: a1a0b52a364eec28d5350d419e40b6019b948d16
5
5
  SHA512:
6
- metadata.gz: 765f8cb6b42a5f454928758dfe892f8e66fc99ba856218c2c7258b34842726a0f10192f4c1c091241bdbd8a2497cc3cf9f3e8ddcabd5fcdb3f1dee74c983915d
7
- data.tar.gz: ede7a398b0e28305f784c7f48d4d6099ec674c3784b91764bf1a2caa1dec9d8812cb85ad3f49504124577eb85f7fe3262107f82bb09ac4762f4ff0ad7ef25a32
6
+ metadata.gz: e14e3f5d3e6c1757d292cd0af67b385265b2c07446a385a203b13b1e148658a54be532d90f4e57023ad620fa97111cc6da874a9c0befd4209730afa76db880fc
7
+ data.tar.gz: c8cf6bb97571ac0bdf8fc3a11e9767eff3a0c10672b802bfa05ca0f5e73cc614beca990520c5579408c304458e83edfaee3ed41d8f390438cc77a9850676cf9a
@@ -16,8 +16,12 @@ def find_config
16
16
  end
17
17
 
18
18
  def load_config
19
- conf = YAML.load(File.read(find_config))
20
- conf.is_a?(Array) ? conf : [conf]
19
+ if path = find_config
20
+ conf = YAML.load(File.read(path))
21
+ conf.is_a?(Array) ? conf : [conf]
22
+ else
23
+ [{}]
24
+ end
21
25
  end
22
26
 
23
27
  options = parse_options
@@ -27,7 +31,7 @@ unless EM.reactor_running?
27
31
  load_config.each do |config|
28
32
  config["local_port"] ||= rand(16383) + 49152
29
33
  config = options.merge(config)
30
- config["hosts"] ||= [config.delete("host")]
34
+ config["hosts"] ||= [config.delete("host")] if config["host"]
31
35
  config = config.each_with_object({}) do |(k, v), h|
32
36
  h[k.to_sym] = v
33
37
  end
@@ -1,3 +1,3 @@
1
1
  module Envoy
2
- VERSION = '0.0.18'
2
+ VERSION = '0.0.19'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: envoy-proxy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Baum