mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge pull request #40638 from p8/fix/fork-tracker-ruby-2.5.3
Fix ForkTracker on ruby <= 2.5.3
This commit is contained in:
commit
ff97127788
1 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,11 @@ module ActiveSupport
|
|||
|
||||
module CoreExtPrivate
|
||||
include CoreExt
|
||||
private :fork
|
||||
|
||||
private
|
||||
def fork(*)
|
||||
super
|
||||
end
|
||||
end
|
||||
|
||||
@pid = Process.pid
|
||||
|
|
Loading…
Reference in a new issue