Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / app_settings / default / queues.py @ f1fc1e9c

History | View | Annotate | Download (500 Bytes)

1
# -*- coding: utf-8 -*-
2
#
3
# Queues, exchanges and bindings for AMQP
4
###########################################
5

    
6
# List of RabbitMQ endpoints
7
AMQP_HOSTS = ["amqp://username:password@host:port"]
8
# AMQP Backend Client. Currently only puka
9
AMQP_BACKEND = 'puka'
10

    
11
EXCHANGE_GANETI = "ganeti"  # Messages from Ganeti
12
EXCHANGE_CRON = "cron"      # Messages from periodically triggered tasks
13
EXCHANGE_API = "api"        # Messages from the REST API
14
EXCHANGES = (EXCHANGE_GANETI, EXCHANGE_CRON, EXCHANGE_API)