Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-09-26 08:43:03 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2018-10-02 18:08:11 +0300
commitaf4b85cef57c00f4cccdac7fde15d4c69d9e94fb (patch)
tree9f6b56fb23933b4181326e81d84fa3a69bd8700c /app/presenters
parent44491012828af1dbda8e807b74cd14f87be34bbd (diff)
Fix commit status presenter spec
Diffstat (limited to 'app/presenters')
-rw-r--r--app/presenters/commit_status_presenter.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/presenters/commit_status_presenter.rb b/app/presenters/commit_status_presenter.rb
index 65e77ea3f92..b2b9fb55cba 100644
--- a/app/presenters/commit_status_presenter.rb
+++ b/app/presenters/commit_status_presenter.rb
@@ -8,7 +8,8 @@ class CommitStatusPresenter < Gitlab::View::Presenter::Delegated
stuck_or_timeout_failure: 'There has been a timeout failure or the job got stuck. Check your timeout limits or try again',
runner_system_failure: 'There has been a runner system failure, please try again',
missing_dependency_failure: 'There has been a missing dependency failure',
- runner_unsupported: 'Your runner is outdated, please upgrade your runner'
+ runner_unsupported: 'Your runner is outdated, please upgrade your runner',
+ schedule_expired: 'Scheduled job could not be executed by some reason, please try again'
}.freeze
private_constant :CALLOUT_FAILURE_MESSAGES