-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add aliases for renamed Sidekiq jobs
This is the suggestion in the Sidekiq FAQs: https://github.com/sidekiq/sidekiq/wiki/FAQ#how-do-i-safely-rename-a-worker The workers were renamed in #1493.
- Loading branch information
Showing
3 changed files
with
6 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,5 @@ def perform(asset_id) | |
end | ||
end | ||
end | ||
|
||
DeleteAssetFileFromNfsWorker = DeleteAssetFileFromNfsJob |
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 |
---|---|---|
|
@@ -11,3 +11,5 @@ def perform(asset_id) | |
end | ||
end | ||
end | ||
|
||
SaveToCloudStorageWorker = SaveToCloudStorageJob |
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 |
---|---|---|
|
@@ -19,3 +19,5 @@ def perform(asset_id) | |
end | ||
end | ||
end | ||
|
||
VirusScanWorker = VirusScanJob |