mher

Results 33 comments of mher

> Are you running rabbitmq for this test inside of a container too? Yes

> Are you running Flower in a docker container for this test too @mher? No, only RabbitMQ server. Flower is running from the master version with `celery -A tasks flower...

I'm testing on OSX. Have you tried to use `-A` option instead of `--broker`?

You can change broker with env vars ``` CELERY_BROKER_URL=amqp:// CELERY_RESULT_BACKEND=rpc ```

Try to reproduce using this docker-compose ``` version: "3.9" services: rabbitmq: image: rabbitmq:3-management ports: - 5672:5672 - 15672:15672 flower: image: mher/flower command: --broker=amqp://rabbitmq --broker_api=http://guest:guest@rabbitmq:15672/api/ ports: - 5555:5555 ``` 1. `docker-compose...

I stop both rabbitmq and flower then start flower ``` » docker-compose stop rabbitmq flower Stopping flower-docker_flower_1 ... done Stopping flower-docker_rabbitmq_1 ... done » docker-compose start flower Starting flower ......

I'm getting `RecursionError: maximum recursion depth exceeded` with this change

@Tomasz-Kluczkowski can you move docker updates into a separate pull request?