summaryrefslogtreecommitdiffstats
path: root/nova/flags.py
diff options
context:
space:
mode:
authorCerberus <matt.dietz@rackspace.com>2011-05-18 18:16:23 +0000
committerTarmac <>2011-05-18 18:16:23 +0000
commit92db39bdb439f693ed59626d8c58f03e470d31f6 (patch)
treee3ecccfa6cb0fa99eaf4da44ec216f05c7da260d /nova/flags.py
parentaf4fdb837674106f5957f87a5c5cda040809b29d (diff)
parent62713a9485f9441a70526bb5245695338215c7af (diff)
Implements a basic mechanism for pushing notifications out to interested parties. The rationale for implementing notifications this way is that the responsibility for them shouldn't fall to Nova. As such, we simply will be pushing messages to a queue where another worker entirely can be written to push messages around to subscribers.
Diffstat (limited to 'nova/flags.py')
-rw-r--r--nova/flags.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/nova/flags.py b/nova/flags.py
index 519793643..32cb6efa8 100644
--- a/nova/flags.py
+++ b/nova/flags.py
@@ -369,6 +369,9 @@ DEFINE_string('host', socket.gethostname(),
DEFINE_string('node_availability_zone', 'nova',
'availability zone of this node')
+DEFINE_string('notification_driver',
+ 'nova.notifier.no_op_notifier',
+ 'Default driver for sending notifications')
DEFINE_list('memcached_servers', None,
'Memcached servers or None for in process cache.')