No Problem.
>
> durable=True and delivery_mode=2 is the default configuration in
> Carrot.
>
> To change it you can change the durable attribute on the Publisher
> +Consumer
> and the delivery_mode attribute on the Publisher.
>
>>>> consumer = Consumer(connection=conn, queue="myqueue",
>>>> exchange="foo",
> ... routing_key="foo", durable=False)
>>>> publisher = Publisher(connection=conn, exchange="foo",
>>>> routing_key="foo",
> durable=True, delivery_mode=0)
Great. Thank you!
cheers,
Christian