gvamysql/gvamysql/gvacommon/celeryrouters.py
Jan Dittberner 22b16f5ad8 Add 'gvamysql/gvacommon/' from commit '546441d49920caf43eb7d33976c2d71ae85f16d5'
git-subtree-dir: gvamysql/gvacommon
git-subtree-mainline: 1b8c4ce697
git-subtree-split: 546441d499
2015-01-01 22:39:27 +01:00

16 lines
424 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
class GvaRouter(object):
def route_for_task(self, task, args=None, kwargs=None):
for route in ['ldap', 'file', 'mysql', 'pgsql']:
if route in task:
return {
'exchange': route,
'exchange_type': 'direct',
'queue': route,
}
return None