Created
August 12, 2013 09:13
-
-
Save mehulved/6209382 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ foreman start | |
14:41:56 web.1 | started with pid 29117 | |
14:41:58 web.1 | 2013-08-12 14:41:58 [29120] [INFO] Starting gunicorn 17.5 | |
14:41:58 web.1 | 2013-08-12 14:41:58 [29120] [INFO] Listening at: http://0.0.0.0:5000 (29120) | |
14:41:58 web.1 | 2013-08-12 14:41:58 [29120] [INFO] Using worker: sync | |
14:41:58 web.1 | 2013-08-12 14:41:58 [29130] [INFO] Booting worker with pid: 29130 | |
14:42:04 web.1 | Did not find settings file development.py | |
14:42:04 web.1 | /home/mehul/Projects/funnel/venv/local/lib/python2.7/site-packages/flask_cache/__init__.py:100: UserWarning: Flask-Cache: CACHE_TYPE is set to null, caching is effectively disabled. | |
14:42:04 web.1 | warnings.warn("Flask-Cache: CACHE_TYPE is set to null, " | |
14:42:04 web.1 | * Running on http://0.0.0.0:3000/ | |
14:42:04 web.1 | * Restarting with reloader | |
14:42:05 web.1 | 2013-08-12 14:42:05 [29157] [INFO] Starting gunicorn 17.5 | |
14:42:05 web.1 | 2013-08-12 14:42:05 [29157] [ERROR] Connection in use: ('0.0.0.0', 5000) | |
14:42:05 web.1 | 2013-08-12 14:42:05 [29157] [ERROR] Retrying in 1 second. | |
14:42:06 web.1 | 2013-08-12 14:42:06 [29157] [ERROR] Connection in use: ('0.0.0.0', 5000) | |
14:42:06 web.1 | 2013-08-12 14:42:06 [29157] [ERROR] Retrying in 1 second. | |
14:42:07 web.1 | 2013-08-12 14:42:07 [29157] [ERROR] Connection in use: ('0.0.0.0', 5000) | |
14:42:07 web.1 | 2013-08-12 14:42:07 [29157] [ERROR] Retrying in 1 second. | |
14:42:08 web.1 | 2013-08-12 14:42:08 [29157] [ERROR] Connection in use: ('0.0.0.0', 5000) | |
14:42:08 web.1 | 2013-08-12 14:42:08 [29157] [ERROR] Retrying in 1 second. | |
14:42:09 web.1 | 2013-08-12 14:42:09 [29157] [ERROR] Connection in use: ('0.0.0.0', 5000) | |
14:42:09 web.1 | 2013-08-12 14:42:09 [29157] [ERROR] Retrying in 1 second. | |
^CSIGINT received | |
14:42:10 system | sending SIGTERM to all processes | |
SIGTERM received | |
14:42:10 web.1 | 2013-08-12 14:42:10 [29120] [INFO] Handling signal: int | |
14:42:10 web.1 | 2013-08-12 14:42:10 [29120] [INFO] Shutting down: Master | |
14:42:10 web.1 | 2013-08-12 14:42:10 [29157] [ERROR] Can't connect to ('0.0.0.0', 5000) | |
14:42:10 web.1 | terminated by SIGTERM | |
$ cat Procfile | |
web: gunicorn runserver:app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment