clean notification options in quantum.conf.

Bug #1056637

Change-Id: I9d9002d3dfbbfa94224bc6ed9dc1a7f5207fb563
This commit is contained in:
gongysh 2012-09-26 16:48:18 +08:00
parent 4c679f6188
commit 4e5d904d2e
1 changed files with 19 additions and 12 deletions

View File

@ -135,21 +135,28 @@ control_exchange = quantum
# ============ Notification System Options ===================== # ============ Notification System Options =====================
# Notifications can be sent when network/subnet/port are create, updated or deleted. # Notifications can be sent when network/subnet/port are create, updated or deleted.
# There are four methods of sending notifications, logging (via the # There are three methods of sending notifications: logging (via the
# log_file directive), rpc (via a message queue), # log_file directive), rpc (via a message queue) and
# noop (no notifications sent, the default) or list of them # noop (no notifications sent, the default)
# Defined in notifier api # Notification_driver can be defined multiple times
notification_driver = quantum.openstack.common.notifier.list_notifier # Do nothing driver
# default_notification_level = INFO # notification_driver = quantum.openstack.common.notifier.no_op_notifier
# myhost = myhost.com # Logging driver
# default_publisher_id = $myhost # notification_driver = quantum.openstack.common.notifier.log_notifier
# RPC driver. DHCP agents needs it.
notification_driver = quantum.openstack.common.notifier.rabbit_notifier
# Defined in rabbit_notifier for rpc way # default_notification_level is used to form actual topic name(s) or to set logging level
# notification_topics = notifications default_notification_level = INFO
# Defined in list_notifier # default_publisher_id is a part of the notification payload
list_notifier_drivers = quantum.openstack.common.notifier.rabbit_notifier # host = myhost.com
# default_publisher_id = $host
# Defined in rabbit_notifier for rpc way, can be comma separated values.
# The actual topic names will be %s.%(default_notification_level)s
notification_topics = notifications
[QUOTAS] [QUOTAS]
# resource name(s) that are supported in quota features # resource name(s) that are supported in quota features