Add 'gvamysql/gvacommon/' from commit '546441d49920caf43eb7d33976c2d71ae85f16d5'

git-subtree-dir: gvamysql/gvacommon
git-subtree-mainline: 1b8c4ce697
git-subtree-split: 546441d499
This commit is contained in:
Jan Dittberner 2015-01-01 22:39:27 +01:00
commit 22b16f5ad8
3 changed files with 18 additions and 0 deletions

3
gvamysql/gvacommon/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.*.swp
*.pyc
.ropeproject/

View File

View File

@ -0,0 +1,15 @@
# -*- 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