summaryrefslogtreecommitdiff
path: root/config/initializers/macos.rb
blob: 1edd6c0a730c7b2ac0684fc8716a550daf112d5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

if /darwin/ =~ RUBY_PLATFORM
  Gitlab::Cluster::LifecycleEvents.on_before_fork do
    require 'fiddle'

    # Dynamically load Foundation.framework, ~implicitly~ initialising
    # the Objective-C runtime before any forking happens in webserver
    #
    # From https://bugs.ruby-lang.org/issues/14009
    Fiddle.dlopen '/System/Library/Frameworks/Foundation.framework/Foundation'
  end
end