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.
9 lines
257 B
Ruby
9 lines
257 B
Ruby
# frozen_string_literal: true
|
|
|
|
if ENV['ENABLE_RBTRACE']
|
|
Gitlab::Cluster::LifecycleEvents.on_worker_start do
|
|
# Unicorn clears out signals before it forks, so rbtrace won't work
|
|
# unless it is enabled after the fork.
|
|
require 'rbtrace'
|
|
end
|
|
end
|