Commit 5f742eb9 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Merge branch 'timeouted' into 'master'

correct error message on helm tiller installation timeout

See merge request gitlab-org/gitlab-ce!20683
parents 71384c59 bec319f8
...@@ -35,7 +35,7 @@ module Clusters ...@@ -35,7 +35,7 @@ module Clusters
def check_timeout def check_timeout
if timeouted? if timeouted?
begin begin
app.make_errored!('Installation timeouted') app.make_errored!('Installation timed out')
ensure ensure
remove_installation_pod remove_installation_pod
end end
......
...@@ -43,7 +43,7 @@ describe Clusters::Applications::CheckInstallationProgressService do ...@@ -43,7 +43,7 @@ describe Clusters::Applications::CheckInstallationProgressService do
service.execute service.execute
expect(application).to be_errored expect(application).to be_errored
expect(application.status_reason).to match(/\btimeouted\b/) expect(application.status_reason).to match(/\btimed out\b/)
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment