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
def check_timeout
if timeouted?
begin
app.make_errored!('Installation timeouted')
app.make_errored!('Installation timed out')
ensure
remove_installation_pod
end
......
......@@ -43,7 +43,7 @@ describe Clusters::Applications::CheckInstallationProgressService do
service.execute
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
......
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