Changes between Initial Version and Version 1 of Ticket #26663
- Timestamp:
- May 25, 2016, 4:17:08 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #26663 – Description
initial v1 1 1 I 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 ***` 2 2 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:3 This 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: 4 4 {{{#!python 5 5 from os import environ