2021-03-11 19:13:27 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
# 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-09-04 01:27:46 +05:30
|
|
|
return unless Gitlab::Runtime.puma?
|
|
|
|
|
|
|
|
Puma::Cluster.prepend(::Gitlab::Cluster::Mixins::PumaCluster)
|