summaryrefslogtreecommitdiffstats
path: root/nova/rpc
diff options
context:
space:
mode:
authorChris Behrens <cbehrens@codestud.com>2011-08-27 21:33:14 -0700
committerChris Behrens <cbehrens@codestud.com>2011-08-27 21:33:14 -0700
commit4faaf9c37d030d68cfea818d396963e3ed7deeaa (patch)
treee2f15b133b129f06b323ec7e7f923398328b8e80 /nova/rpc
parent3a4ee30de0f619b7046e90ce9b6978e3a6dd20a2 (diff)
downloadnova-4faaf9c37d030d68cfea818d396963e3ed7deeaa.tar.gz
nova-4faaf9c37d030d68cfea818d396963e3ed7deeaa.tar.xz
nova-4faaf9c37d030d68cfea818d396963e3ed7deeaa.zip
fix FALGS typo
Diffstat (limited to 'nova/rpc')
-rw-r--r--nova/rpc/impl_carrot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc/impl_carrot.py b/nova/rpc/impl_carrot.py
index 117489bc6..40097e10e 100644
--- a/nova/rpc/impl_carrot.py
+++ b/nova/rpc/impl_carrot.py
@@ -119,7 +119,7 @@ class Consumer(messaging.Consumer):
"""
def __init__(self, *args, **kwargs):
- max_retries = FALGS.rabbit_max_retries
+ max_retries = FLAGS.rabbit_max_retries
sleep_time = FLAGS.rabbit_retry_interval
tries = 0
while True: