Describe the bug
Importing Bitrix from the fast_bitrix24 library into any Django project file causes Flower to fail to load its web interface. It keeps infinitely loading the page when attempting to access the designated port where Flower is running. No errors appear in the terminal during this process. The issue persists with both Redis and RabbitMQ as message brokers.
To Reproduce
Steps to reproduce the behavior:
Import Bitrix in any Django file:
from fast_bitrix24 import Bitrix
Start your Django project and message broker (Redis or RabbitMQ).
Run the Celery worker:
celery -A <your_project> worker --pool=solo --loglevel=INFO --hostname=worker1@%n
Run Flower:
celery -A <your_project> flower --broker=redis://localhost:6379/0
Open the Flower web interface on the specified port (default: :5555).
Describe the bug
Importing
Bitrix
from thefast_bitrix24
library into any Django project file causes Flower to fail to load its web interface. It keeps infinitely loading the page when attempting to access the designated port where Flower is running. No errors appear in the terminal during this process. The issue persists with both Redis and RabbitMQ as message brokers.To Reproduce
Steps to reproduce the behavior:
Bitrix
in any Django file::5555
).System Information
celery==5.4.0
flower==2.0.1
redis==5.0.8
fast-bitrix24==1.7.3
Django==5.0.4