Skip to content

Commit

Permalink
Add comment about cron expressions meaning
Browse files Browse the repository at this point in the history
  • Loading branch information
cbliard committed May 16, 2024
1 parent d380ac1 commit f7d4a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/storages/lib/open_project/storages/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -326,12 +326,12 @@ def self.permissions
add_cron_jobs do
{
"Storages::CleanupUncontaineredFileLinksJob": {
cron: "06 22 * * *",
cron: "06 22 * * *", # every day at 22:06
class: ::Storages::CleanupUncontaineredFileLinksJob.name
},

"Storages::ManageNextcloudIntegrationJob": {
cron: "1 * * * *",
cron: "1 * * * *", # every hour at xx:01
class: ::Storages::ManageNextcloudIntegrationJob.name
}
}
Expand Down

0 comments on commit f7d4a43

Please sign in to comment.