Merge branch 'fix/project-destroy-callbacks' into 'master'

Fix project destroy callback

See gitlab-org/gitlab-ee!107.

See merge request !2307
This commit is contained in:
Douwe Maan 2016-01-06 13:00:50 +00:00
commit 8b39b8cd54

View file

@ -54,6 +54,8 @@ module Ci
# To prevent db load megabytes of data from trace
default_scope -> { select(Ci::Build.columns_without_lazy) }
before_destroy { project }
class << self
def columns_without_lazy
(column_names - LAZY_ATTRIBUTES).map do |column_name|
@ -145,10 +147,6 @@ module Ci
end
end
def project
commit.project
end
def project_id
commit.project.id
end