hi,
In my local environment i used celery for schedule task it works in local i 
user redis as a worker
now i want to configure django celery in heroku server 
i try to used herok-redis addons in heroku
after i add following settings in my settings.py

r = redis.from_url(os.environ.get("REDIS_URL"))
 BROKER_URL = redis.from_url(os.environ.get("REDIS_URL"))
 CELERY_RESULT_BACKEND = os.environ.get('REDIS_URL')
 CELERY_ACCEPT_CONTENT = ['application/json']
 CELERY_TASK_SERIALIZER = 'json'
 CELERY_RESULT_SERIALIZER = 'json'
 CELERY_TIMEZONE = 'Canada/Eastern'




 

redis_url = urlparse.urlparse(os.environ.get('REDIS_URL'))
 CACHES = {
 "default": {
 "BACKEND": "redis_cache.RedisCache",
 "LOCATION": "{0}:{1}".format(redis_url.hostname, redis_url.port),
 "OPTIONS": {
 "PASSWORD": redis_url.password,
 "DB": 0,
 }
 }
 }


after in my procfile i added

web: gunicorn bizbii.wsgi --log-file -
 worker : celery workder -A tasks.app -l INFO
 python manage.py celeryd -v 2 -B -s celery -E -l INFO

but still task not run 
after that i run command for log so it return

2016-07-30T11:20:26.858544+00:00 heroku[router]: at=info method=GET 
path="/" host=www.bizbii.com 
request_id=c3debacd-298f-43f2-a2a4-e8a8df970088 fwd="1.22.12.44" dyno=web.1 
connect=1ms service=305ms status=200 bytes=59907


not show any error


but still task not run

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Heroku" group.

To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/heroku?hl=en_US?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Heroku Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to