2021-02-03 16:09:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-10-16 11:06:17 -04:00
|
|
|
# Technical debt, this should be ideally upstreamed.
|
|
|
|
#
|
|
|
|
# However, there's currently no way to hook before doing
|
|
|
|
# graceful shutdown today.
|
|
|
|
#
|
|
|
|
# Follow-up the issue: https://gitlab.com/gitlab-org/gitlab/issues/34107
|
|
|
|
|
2021-05-21 05:10:16 -04:00
|
|
|
return unless Gitlab::Runtime.puma?
|
|
|
|
|
|
|
|
Puma::Cluster.prepend(::Gitlab::Cluster::Mixins::PumaCluster)
|