1065f8ce7a
This allows us (and others) to test drive Puma without it affecting all users. Puma can be enabled by setting the environment variable "EXPERIMENTAL_PUMA" to a non empty value.
13 lines
420 B
Ruby
13 lines
420 B
Ruby
# 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 Unicorn
|
|
#
|
|
# From https://bugs.ruby-lang.org/issues/14009
|
|
Fiddle.dlopen '/System/Library/Frameworks/Foundation.framework/Foundation'
|
|
end
|
|
end
|