Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
3.1 KiB
Ruby
Raw Permalink Normal View History

2025-08-19 17:03:57 +01:00
# frozen_string_literal: true
2025-08-19 17:40:34 +01:00
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
# Use rack-timeout if we run in clustered mode with at least 2 workers
# so that workers, should a timeout occur, can be restarted without interruption.
if OpenProject::Configuration.web_workers >= 2
service_timeout = OpenProject::Configuration.web_timeout
wait_timeout = OpenProject::Configuration.web_wait_timeout
2025-08-11 11:16:48 +02:00
term_on_timeout = OpenProject::Configuration.term_on_timeout
Rails.logger.debug { "Enabling Rack::Timeout (service=#{service_timeout}s wait=#{wait_timeout}s)" }
Rails.application.config.middleware.insert_before(
2024-01-04 17:01:17 +01:00
Rack::Runtime,
Rack::Timeout,
service_timeout:, # time after which a request being served times out
wait_timeout:, # time after which a request waiting to be served times out
2025-08-11 11:16:48 +02:00
term_on_timeout:, # shut down worker (gracefully) right away on timeout to be restarted
2023-01-03 15:48:37 +01:00
service_past_wait: true # Treat the service timeout as independent from the wait timeout
)
Rails.application.config.after_initialize do
2022-05-17 16:21:59 +02:00
# remove default logger (logging uninteresting extra info with each not timed out request)
Rack::Timeout.unregister_state_change_observer(:logger)
2022-05-17 16:21:59 +02:00
Rack::Timeout.register_state_change_observer(:wait_timeout_logger) do |env|
details = env[Rack::Timeout::ENV_INFO_KEY]
2022-05-17 16:21:59 +02:00
if details.state == :timed_out && details.wait.present?
2024-01-04 17:01:17 +01:00
OpenProject.logger.error "Request timed out waiting to be served!"
2022-05-17 16:21:59 +02:00
end
end
2022-05-17 16:21:59 +02:00
# The timeout itself is already reported so no need to
# report the generic internal server error too as it doesn't
# add any more information. Even worse, it's not immediately
# clear that the two reports are related.
require "rack/timeout/suppress_internal_error_report_on_timeout"
OpenProjectErrorHelper.prepend Rack::Timeout::SuppressInternalErrorReportOnTimeout
2022-05-17 16:21:59 +02:00
end
else
Rails.logger.debug { "Not enabling Rack::Timeout since we are not running in cluster mode with at least 2 workers" }
end