Changes between Initial Version and Version 1 of Ticket #26663


Ignore:
Timestamp:
May 25, 2016, 4:17:08 AM (8 years ago)
Author:
Tapan Pandita
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26663 – Description

    initial v1  
    11I am running django 1.9.6 on gunicorn 19.5 with the gevent worker (gevent==1.1.1, greenlet==0.4.9). My app is deployed on heroku. For some requests, I have noticed this error: `*** Error in '/app/.heroku/python/bin/python': double free or corruption (out): 0x000000000403bc90 ***`
    22
    3 This is the command I'm using to start gunicorn: `gunicorn hypertrackapi.wsgi:application -b 0.0.0.0:$PORT -c config/gunicorn.py` and this is my gunicorn config:
     3This is the command I'm using to start gunicorn: `gunicorn api.wsgi:application -b 0.0.0.0:$PORT -c config/gunicorn.py` and this is my gunicorn config:
    44{{{#!python
    55from os import environ
Back to Top