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:
commit
8b39b8cd54
1 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue