Redis – Celery setup problem – task code is shown instead of executed
I'm getting this error when trying to run a Celery task in my Flask app: celery.exceptions.TimeoutError: The operation timed out. Here's my config file: from celery import Celery import os from flask import Flask def create_celery_app(): celery = Celery( 'celery-app',…