Browse Source

Stresstests: Enable fanout_patterns for redis config template

Ask Solem 11 years ago
parent
commit
5ecc16f070
1 changed files with 4 additions and 1 deletions
  1. 4 1
      funtests/stress/stress/templates.py

+ 4 - 1
funtests/stress/stress/templates.py

@@ -73,7 +73,10 @@ class redis(default):
     CELERY_RESULT_BACKEND = os.environ.get(
         'CSTRESS_BACKEND', 'redis://?new_join=1',
     )
-    BROKER_TRANSPORT_OPTIONS = {'fanout_prefix': True}
+    BROKER_TRANSPORT_OPTIONS = {
+        'fanout_prefix': True,
+        'fanout_patterns': True,
+    }
 
 
 @template()