提交 1aba3a5c 编写于 作者: L Lin Jen-Shin

Unify pipeline_for(ref, nil) and pipeline_for(ref), feedback:

https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14073464
上级 9c9259cc
......@@ -1094,8 +1094,11 @@ class Project < ActiveRecord::Base
!namespace.share_with_group_lock
end
def pipeline_for(ref, sha = commit(ref).try(:sha))
def pipeline_for(ref, sha = nil)
sha ||= commit(ref).try(:sha)
return unless sha
pipelines.order(id: :desc).find_by(sha: sha, ref: ref)
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册