Browse Source

[stresstests] Queue must be durable... also disable auto_delete

Ask Solem 12 years ago
parent
commit
515809fdad
1 changed files with 2 additions and 3 deletions
  1. 2 3
      funtests/stress/stress/app.py

+ 2 - 3
funtests/stress/stress/app.py

@@ -23,9 +23,8 @@ app.conf.update(
     CELERY_DEFAULT_QUEUE=CSTRESS_QUEUE,
     CELERY_QUEUES=(
         Queue(CSTRESS_QUEUE,
-              exchange=Exchange(CSTRESS_QUEUE, durable=False),
-              routing_key=CSTRESS_QUEUE,
-              durable=False, auto_delete=True),
+              exchange=Exchange(CSTRESS_QUEUE),
+              routing_key=CSTRESS_QUEUE),
     ),
 )