diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-02-19 19:58:43 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-02-19 19:58:43 +0100 |
commit | aa812dbfcc693f82e1a9b16e0e894d2800938d9e (patch) | |
tree | 61a6b0abfe2ab6fc220c06c3a6a65916e5cd4e3b /app/models/ci | |
parent | 1817b766b2bdf03e886118bda5e1aee48b5c2413 (diff) | |
download | gitlab-ce-aa812dbfcc693f82e1a9b16e0e894d2800938d9e.tar.gz |
Fix missing ignored? for GenericCommitStatuscommit-status-fix
Diffstat (limited to 'app/models/ci')
-rw-r--r-- | app/models/ci/build.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb index 623edd8bc57..7a641cfd998 100644 --- a/app/models/ci/build.rb +++ b/app/models/ci/build.rb @@ -116,10 +116,6 @@ module Ci end end - def ignored? - failed? && allow_failure? - end - def retryable? project.builds_enabled? && commands.present? end |