one more refactor after feedback

This commit is contained in:
Markus Doits 2018-11-05 17:28:25 +01:00
parent 3aa85715dd
commit 024523a3b5
No known key found for this signature in database
GPG Key ID: A0796D16BD3D3DAE
1 changed files with 13 additions and 13 deletions

View File

@ -317,23 +317,12 @@ module Ci
pipeline.builds.retried.where(name: self.name).count
end
# The format of the retry option changed in GitLab 11.5. Before it was an
# integer only, after it is a hash. New builds always created have the
# correct format, but builds created before GitLab 11.5 and saved in
# database still have the old integer only format. This helper method makes
# sure that the format is always correct when accessing the retry options,
# even on old builds.
def sanitized_retry_option
value = options&.[](:retry)
value.is_a?(Integer) ? { max: value } : value
end
def retries_max
sanitized_retry_option&.[](:max) || 0
normalized_retry.fetch(:max, 0)
end
def retry_when
sanitized_retry_option&.[](:when) || ['always']
normalized_retry.fetch(:when, ['always'])
end
def retry_failure?
@ -904,6 +893,17 @@ module Ci
options&.dig(:environment, :url) || persisted_environment&.external_url
end
# The format of the retry option changed in GitLab 11.5. Before it was an
# integer only, after it is a hash. New builds always created have the
# correct format, but builds created before GitLab 11.5 and saved in
# database still have the old integer only format. This helper method makes
# sure that the format is always correct when accessing the retry options,
# even on old builds.
def normalized_retry
value = options[:retry]
value.is_a?(Integer) ? { max: value } : value.to_h
end
def build_attributes_from_config
return {} unless pipeline.config_processor