Skip to content

Commit

Permalink
Merge pull request #40638 from p8/fix/fork-tracker-ruby-2.5.3
Browse files Browse the repository at this point in the history
Fix ForkTracker on ruby <= 2.5.3
  • Loading branch information
rafaelfranca committed Nov 19, 2020
1 parent e1c2b73 commit 59eadce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion activesupport/lib/active_support/fork_tracker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ def fork(*)

module CoreExtPrivate
include CoreExt
private :fork

private
def fork(*)
super
end
end

@pid = Process.pid
Expand Down

0 comments on commit 59eadce

Please sign in to comment.