mirror of
https://github.com/redmine/redmine.git
synced 2026-06-15 00:31:53 +02:00
Deadlock when assigning custom values (#30465).
Patch by Pavel Rosický. git-svn-id: http://svn.redmine.org/redmine/trunk@17823 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -27,7 +27,7 @@ module Redmine
|
||||
return if self.included_modules.include?(Redmine::Acts::Customizable::InstanceMethods)
|
||||
cattr_accessor :customizable_options
|
||||
self.customizable_options = options
|
||||
has_many :custom_values, lambda {includes(:custom_field).order("#{CustomField.table_name}.position")},
|
||||
has_many :custom_values, lambda {includes(:custom_field)},
|
||||
:as => :customized,
|
||||
:inverse_of => :customized,
|
||||
:dependent => :delete_all,
|
||||
|
||||
Reference in New Issue
Block a user