Skip to content

Commit

Permalink
prodanaly: treat prodsourcelabel=panda as analysis jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarreir committed Dec 3, 2019
1 parent fae333b commit f128e23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandaharvester/harvestercore/queue_config_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def get_source_label(self, job_type=None):
return 'test'

# grandly unified queues: prodsourcelabel in job has precedence over queue prodsourcelabel
if job_type == 'user':
return job_type
if job_type in ('user', 'panda'):
return 'user'

return self.prodSourceLabel

Expand Down

0 comments on commit f128e23

Please sign in to comment.