-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release/14.1' into dev
- Loading branch information
Showing
114 changed files
with
1,739 additions
and
741 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# -- copyright | ||
# OpenProject is an open source project management software. | ||
# Copyright (C) 2024 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. | ||
# ++ | ||
|
||
module Cron::QuarterHourScheduleJob | ||
extend ActiveSupport::Concern | ||
|
||
included do | ||
include GoodJob::ActiveJobExtensions::Concurrency | ||
|
||
# With good_job and the limit of only allowing a single job to be enqueued and | ||
# also a single job being performed at the same time we end up having | ||
# up to two jobs that are not yet finished. | ||
|
||
good_job_control_concurrency_with( | ||
enqueue_limit: 1, | ||
perform_limit: 1 | ||
) | ||
|
||
# The job is scheduled to run every 15 minutes. If the job before takes longer | ||
# than expected we retry two more times (at cron_at + 5 and cron_at + 15). Then the job is discarded. | ||
# Once the job is discarded, the next job will be scheduled to run at the next quarter hour. | ||
retry_on GoodJob::ActiveJobExtensions::Concurrency::ConcurrencyExceededError, | ||
wait: 5.minutes, | ||
attempts: 3 | ||
end | ||
|
||
private | ||
|
||
def upper_boundary | ||
@upper_boundary ||= GoodJob::Job | ||
.find(job_id) | ||
.cron_at | ||
end | ||
|
||
def lower_boundary | ||
@lower_boundary ||= begin | ||
predecessor = GoodJob::Job | ||
.succeeded | ||
.where(job_class: self.class.name) | ||
.order(cron_at: :desc) | ||
.first | ||
|
||
if predecessor | ||
predecessor.cron_at + 15.minutes | ||
else | ||
upper_boundary | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# i18n-tasks finds and manages missing and unused translations: https://github.com/glebm/i18n-tasks | ||
# | ||
# This configuration file is only used to check interpolations consistency with command | ||
# `i18n-tasks check-consistent-interpolations --config config/i18n-tasks-all-files.yml` | ||
|
||
data: | ||
# Locale files patterns where translations are read from: | ||
read: | ||
- config/locales/en.seeders.yml | ||
- config/locales/en.yml | ||
- config/locales/js-en.yml | ||
- config/locales/crowdin/%{locale}.seeders.yml | ||
- config/locales/crowdin/%{locale}.yml | ||
- config/locales/crowdin/js-%{locale}.yml | ||
- config/locales/generated/%{locale}.yml | ||
- modules/*/config/locales/en.seeders.yml | ||
- modules/*/config/locales/en.yml | ||
- modules/*/config/locales/js-en.yml | ||
- modules/*/config/locales/crowdin/%{locale}.seeders.yml | ||
- modules/*/config/locales/crowdin/%{locale}.yml | ||
- modules/*/config/locales/crowdin/js-%{locale}.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.