Reputation: 21
Help needed!
PS: I have already created Virtual Hosts using this link
CELERY_BROKER_URL = 'amqp://flash:flash_education@localhost:5672/flash'
import os from celery import Celery
from django.conf import settings
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')
app = Celery(
'flash_education',
namespace='CELERY',
)
app.config_from_object('django.conf:settings')
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
import datetime
import json
from celery import shared_task
@shared_task(name="ping")
def ping():
print("pong")
Attaching images from my terminal, one of of the worker instance other is of the shell from which I am firing the tasks. Note: I started both after settings and all but it does not seem to work
shell instance firing the request
RabbitMQ, Celery==4.4.2 Django==3.0.4 Please help!
Upvotes: 2
Views: 783
Reputation: 21
I might be late! So the Solution to this was that I missed the settings to be added in the base project init.py pertaining to celery. Adding the details fixed my issue!
Upvotes: 0