orchestration 0.5.13 → 0.5.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 037e3ae31fd0262ecde552e105f6313346a790cd8a0325d5162343352c9e972a
4
- data.tar.gz: '057219101c53b9046d4b3d5e56c8ee8232aa12bcac73e33aa13e60bf5c831b22'
3
+ metadata.gz: 291252425784215fed686a5bf414b115dbec55ebca6bcdb23b136d5c6816e195
4
+ data.tar.gz: d972df8f59a94eca1912911b4f662fc195fa154efe935d5b4c55aef41c7b61c7
5
5
  SHA512:
6
- metadata.gz: 7e678adc9b3ec89927df730b2f18e6a32dd3da17c84c6dfb77926309523854b7abfa8d29422b00fce976ec269dc48285bded35c3995004d71cca56328d73223f
7
- data.tar.gz: 4f25a1bbb55d3bda4df651045f9919de417e9c8eada7cbcd6b5c00ce77308db3793b019e2b1a102771c73c2c878c032c5ac0cb75d0f8de9b7d1de3da5fb59471
6
+ metadata.gz: 8628b095acf09db5f22f9144c4224fdbd3b97d16b737c3269e9ba3db04ca5c91574c926f6ea6382d4e6daea8248a7e297dc81dba06d1a1818077584a1955bd9a
7
+ data.tar.gz: 666c46c274e7fe26828e35b2eaa0ff8455b3c6866611e91572f7ad08daff1476985944b41ccf2e6c37b02294256deb9739f1c8413308e72509b0baab6b815e56
data/README.md CHANGED
@@ -27,7 +27,7 @@ The below screenshot demonstrates _Orchestration_ being installed in a brand new
27
27
  Add _Orchestration_ to your Gemfile:
28
28
 
29
29
  ```ruby
30
- gem 'orchestration', '~> 0.5.13'
30
+ gem 'orchestration', '~> 0.5.14'
31
31
  ```
32
32
 
33
33
  Install:
@@ -216,8 +216,8 @@ _(See [sidecar containers](#sidecar-containers) if you are running your test/dev
216
216
  Dependencies will be launched and then tested for readiness. The retry limit and interval time for readiness tests can be controlled by the following environment variables:
217
217
 
218
218
  ```
219
- ORCHESTRATION_RETRY_LIMIT # default: 10
220
- ORCHESTRATION_RETRY_INTERVAL # default: 5 [seconds]
219
+ ORCHESTRATION_RETRY_LIMIT # default: 15
220
+ ORCHESTRATION_RETRY_INTERVAL # default: 10 [seconds]
221
221
  ```
222
222
 
223
223
  ### (Local) Production
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Orchestration
4
4
  class ServiceCheck
5
- ATTEMPT_LIMIT = ENV.fetch('ORCHESTRATION_RETRY_LIMIT', '10').to_i
6
- RETRY_INTERVAL = ENV.fetch('ORCHESTRATION_RETRY_INTERVAL', '6').to_i
5
+ ATTEMPT_LIMIT = ENV.fetch('ORCHESTRATION_RETRY_LIMIT', '15').to_i
6
+ RETRY_INTERVAL = ENV.fetch('ORCHESTRATION_RETRY_INTERVAL', '10').to_i
7
7
 
8
8
  def initialize(service, terminal, options = {})
9
9
  @service = service
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.5.13'
4
+ VERSION = '0.5.14'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.13
4
+ version: 0.5.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell