Ярлыки

суббота, 3 ноября 2012 г.

insert new queue in CELERY


CELERY_IMPORTS = ("test1.tasks","new.tasks")
CELERY_ROUTES = \
{
        "test1":
        {
                "queue": "test1"
        },
        "NEW":
        {
                "queue": "
NEWtest"
        }

}
CELERY_QUEUES = \
{
        "default":
        {
                "exchange": "default",
                "binding_key": "default"
        },
        "test1":
        {
                "exchange": "test",
                "exchange_type": "direct",
                "binding_key": "test1"
        },
        "NEWtest":
        {
                "exchange": "test",
                "exchange_type": "direct",
                "binding_key": "test1"
        }


}
CELERY_DEFAULT_QUEUE = "default"

Комментариев нет:

Отправить комментарий