Skip to content

Commit

Permalink
fix: Correct timeout value in tests to match #55
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Backend service now inherits the same timeout used for health checks, instead of the former hardcoded value of 10 seconds.
  • Loading branch information
morgante committed Jul 8, 2021
1 parent e56d959 commit a03bdf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/minimal/controls/minimal.rb
Expand Up @@ -73,8 +73,8 @@
expect(backend_services[0]['healthChecks'][0]).to end_with "#{resource_name_prefix}-hc-http"
end

it 'has a timeout length of 10 seconds' do
expect(backend_services[0]['timeoutSec']).to eq(10)
it 'has a timeout length of 1 second' do
expect(backend_services[0]['timeoutSec']).to eq(1)
end
end
end

0 comments on commit a03bdf6

Please sign in to comment.