mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix "warning: instance variable @parallelized not initialized"
This commit is contained in:
parent
4a23cb3415
commit
685caef33b
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ module ActiveSupport
|
|||
end
|
||||
|
||||
def parallelized?
|
||||
@parallelized
|
||||
@parallelized if defined?(@parallelized)
|
||||
end
|
||||
|
||||
def should_parallelize?
|
||||
|
|
Loading…
Reference in a new issue