Skip to content

Commit

Permalink
[common] Rename queue names
Browse files Browse the repository at this point in the history
This code renames the names of Arthur queues:
- create  --> initial_fetch_jobs
- update  --> incremental_fetch_jobs
- archive --> archive_jobs

Signed-off-by: Valerio Cosentino <[email protected]>
  • Loading branch information
valeriocos committed Oct 22, 2019
1 parent 60b05a9 commit 3f98a20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arthur/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

CH_PUBSUB = 'ch_arthur'

Q_ARCHIVE_JOBS = 'archive'
Q_CREATION_JOBS = 'create'
Q_UPDATING_JOBS = 'update'
Q_ARCHIVE_JOBS = 'archive_jobs'
Q_CREATION_JOBS = 'initial_fetch_jobs'
Q_UPDATING_JOBS = 'incremental_fetch_jobs'
Q_STORAGE_ITEMS = 'items'

TIMEOUT = 3600 * 24
Expand Down

0 comments on commit 3f98a20

Please sign in to comment.