1
0
Fork 0
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:
Rafael França 2020-11-18 13:10:41 -05:00 committed by GitHub
commit ff97127788
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,11 @@ module ActiveSupport
module CoreExtPrivate
include CoreExt
private :fork
private
def fork(*)
super
end
end
@pid = Process.pid