Fix project destroy callback

See gitlab-org/gitlab-ee!107.
This commit is contained in:
Grzegorz Bizon 2016-01-05 20:38:35 +01:00
parent 8de1f7159c
commit db2d067eec
1 changed files with 2 additions and 4 deletions

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