question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Django app Deploying on Heroku (code=H10 desc="App crashed")

See original GitHub issue

Good day! I’m trying to deploy app at heroku. When I’ve push it to heroku I receive such heroku logs tail. 020-02-22T15:59:50.492247+00:00 heroku[web.1]: State changed from crashed to starting 2020-02-22T15:59:56.792128+00:00 heroku[web.1]: Starting process with command gunicorn website.wsgi 2020-02-22T16:00:00.152822+00:00 heroku[web.1]: State changed from starting to up 2020-02-22T15:59:59.738473+00:00 app[web.1]: [2020-02-22 15:59:59 +0000] [4] [INFO] Starting gunicorn 20.0.4 2020-02-22T15:59:59.739497+00:00 app[web.1]: [2020-02-22 15:59:59 +0000] [4] [INFO] Listening at: http://0.0.0.0:22744 (4) 2020-02-22T15:59:59.739668+00:00 app[web.1]: [2020-02-22 15:59:59 +0000] [4] [INFO] Using worker: sync 2020-02-22T15:59:59.747403+00:00 app[web.1]: [2020-02-22 15:59:59 +0000] [10] [INFO] Booting worker with pid: 10 2020-02-22T15:59:59.850927+00:00 app[web.1]: [2020-02-22 15:59:59 +0000] [11] [INFO] Booting worker with pid: 11 2020-02-22T16:00:00.131538+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [10] [ERROR] Exception in worker process 2020-02-22T16:00:00.131544+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:00.131545+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 583, in spawn_worker 2020-02-22T16:00:00.131589+00:00 app[web.1]: worker.init_process() 2020-02-22T16:00:00.131590+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 119, in init_process 2020-02-22T16:00:00.131591+00:00 app[web.1]: self.load_wsgi() 2020-02-22T16:00:00.131591+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 144, in load_wsgi 2020-02-22T16:00:00.131592+00:00 app[web.1]: self.wsgi = self.app.wsgi() 2020-02-22T16:00:00.131593+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 67, in wsgi 2020-02-22T16:00:00.131593+00:00 app[web.1]: self.callable = self.load() 2020-02-22T16:00:00.131594+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 49, in load 2020-02-22T16:00:00.131594+00:00 app[web.1]: return self.load_wsgiapp() 2020-02-22T16:00:00.131595+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 39, in load_wsgiapp 2020-02-22T16:00:00.131595+00:00 app[web.1]: return util.import_app(self.app_uri) 2020-02-22T16:00:00.131596+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/util.py”, line 358, in import_app 2020-02-22T16:00:00.131596+00:00 app[web.1]: mod = importlib.import_module(module) 2020-02-22T16:00:00.131597+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:00.131598+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:00.131599+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:00.131599+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:00.131600+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:00.131600+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:00.131600+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:00.131601+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:00.131602+00:00 app[web.1]: File “/app/website/wsgi.py”, line 16, in <module> 2020-02-22T16:00:00.131602+00:00 app[web.1]: application = get_wsgi_application() 2020-02-22T16:00:00.131603+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/core/wsgi.py”, line 12, in get_wsgi_application 2020-02-22T16:00:00.131603+00:00 app[web.1]: django.setup(set_prefix=False) 2020-02-22T16:00:00.131604+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/init.py”, line 19, in setup 2020-02-22T16:00:00.131604+00:00 app[web.1]: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2020-02-22T16:00:00.131605+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 76, in getattr 2020-02-22T16:00:00.131605+00:00 app[web.1]: self._setup(name) 2020-02-22T16:00:00.131605+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 63, in _setup 2020-02-22T16:00:00.131606+00:00 app[web.1]: self._wrapped = Settings(settings_module) 2020-02-22T16:00:00.131606+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 142, in init 2020-02-22T16:00:00.131607+00:00 app[web.1]: mod = importlib.import_module(self.SETTINGS_MODULE) 2020-02-22T16:00:00.131608+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:00.131608+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:00.131609+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:00.131609+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:00.131610+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:00.131610+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:00.131611+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:00.131612+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:00.131612+00:00 app[web.1]: File “/app/website/settings.py”, line 2, in <module> 2020-02-22T16:00:00.131613+00:00 app[web.1]: import django_heroku 2020-02-22T16:00:00.131613+00:00 app[web.1]: ModuleNotFoundError: No module named ‘django_heroku’ 2020-02-22T16:00:00.139976+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [10] [INFO] Worker exiting (pid: 10) 2020-02-22T16:00:00.284918+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [11] [ERROR] Exception in worker process 2020-02-22T16:00:00.284921+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:00.284922+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 583, in spawn_worker 2020-02-22T16:00:00.284923+00:00 app[web.1]: worker.init_process() 2020-02-22T16:00:00.284923+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 119, in init_process 2020-02-22T16:00:00.284924+00:00 app[web.1]: self.load_wsgi() 2020-02-22T16:00:00.284924+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 144, in load_wsgi 2020-02-22T16:00:00.284925+00:00 app[web.1]: self.wsgi = self.app.wsgi() 2020-02-22T16:00:00.284926+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 67, in wsgi 2020-02-22T16:00:00.284926+00:00 app[web.1]: self.callable = self.load() 2020-02-22T16:00:00.284926+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 49, in load 2020-02-22T16:00:00.284927+00:00 app[web.1]: return self.load_wsgiapp() 2020-02-22T16:00:00.284927+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 39, in load_wsgiapp 2020-02-22T16:00:00.284928+00:00 app[web.1]: return util.import_app(self.app_uri) 2020-02-22T16:00:00.284928+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/util.py”, line 358, in import_app 2020-02-22T16:00:00.284931+00:00 app[web.1]: mod = importlib.import_module(module) 2020-02-22T16:00:00.284931+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:00.284932+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:00.284932+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:00.284933+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:00.284933+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:00.284933+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:00.284934+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:00.284934+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:00.284935+00:00 app[web.1]: File “/app/website/wsgi.py”, line 16, in <module> 2020-02-22T16:00:00.284935+00:00 app[web.1]: application = get_wsgi_application() 2020-02-22T16:00:00.284935+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/core/wsgi.py”, line 12, in get_wsgi_application 2020-02-22T16:00:00.284936+00:00 app[web.1]: django.setup(set_prefix=False) 2020-02-22T16:00:00.284936+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/init.py”, line 19, in setup 2020-02-22T16:00:00.284937+00:00 app[web.1]: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2020-02-22T16:00:00.284937+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 76, in getattr 2020-02-22T16:00:00.284937+00:00 app[web.1]: self._setup(name) 2020-02-22T16:00:00.284938+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 63, in _setup 2020-02-22T16:00:00.284938+00:00 app[web.1]: self._wrapped = Settings(settings_module) 2020-02-22T16:00:00.284939+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 142, in init 2020-02-22T16:00:00.284939+00:00 app[web.1]: mod = importlib.import_module(self.SETTINGS_MODULE) 2020-02-22T16:00:00.284939+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:00.284940+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:00.284940+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:00.284941+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:00.284941+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:00.284941+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:00.284942+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:00.284942+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:00.284942+00:00 app[web.1]: File “/app/website/settings.py”, line 2, in <module> 2020-02-22T16:00:00.284943+00:00 app[web.1]: import django_heroku 2020-02-22T16:00:00.284950+00:00 app[web.1]: ModuleNotFoundError: No module named ‘django_heroku’ 2020-02-22T16:00:00.285705+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [11] [INFO] Worker exiting (pid: 11) 2020-02-22T16:00:00.446010+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [4] [INFO] Shutting down: Master 2020-02-22T16:00:00.446358+00:00 app[web.1]: [2020-02-22 16:00:00 +0000] [4] [INFO] Reason: Worker failed to boot. 2020-02-22T16:00:00.566254+00:00 heroku[web.1]: State changed from up to crashed 2020-02-22T16:00:00.569748+00:00 heroku[web.1]: State changed from crashed to starting 2020-02-22T16:00:00.543964+00:00 heroku[web.1]: Process exited with status 3 2020-02-22T16:00:05.483596+00:00 heroku[web.1]: Starting process with command gunicorn website.wsgi 2020-02-22T16:00:08.225034+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [4] [INFO] Starting gunicorn 20.0.4 2020-02-22T16:00:08.225976+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [4] [INFO] Listening at: http://0.0.0.0:58623 (4) 2020-02-22T16:00:08.226158+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [4] [INFO] Using worker: sync 2020-02-22T16:00:08.232684+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [10] [INFO] Booting worker with pid: 10 2020-02-22T16:00:08.258598+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [11] [INFO] Booting worker with pid: 11 2020-02-22T16:00:08.711773+00:00 heroku[web.1]: State changed from starting to up 2020-02-22T16:00:08.684556+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [11] [ERROR] Exception in worker process 2020-02-22T16:00:08.684584+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:08.684585+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 583, in spawn_worker 2020-02-22T16:00:08.684586+00:00 app[web.1]: worker.init_process() 2020-02-22T16:00:08.684587+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 119, in init_process 2020-02-22T16:00:08.684587+00:00 app[web.1]: self.load_wsgi() 2020-02-22T16:00:08.684588+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 144, in load_wsgi 2020-02-22T16:00:08.684588+00:00 app[web.1]: self.wsgi = self.app.wsgi() 2020-02-22T16:00:08.684589+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 67, in wsgi 2020-02-22T16:00:08.684589+00:00 app[web.1]: self.callable = self.load() 2020-02-22T16:00:08.684589+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 49, in load 2020-02-22T16:00:08.684590+00:00 app[web.1]: return self.load_wsgiapp() 2020-02-22T16:00:08.684590+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 39, in load_wsgiapp 2020-02-22T16:00:08.684591+00:00 app[web.1]: return util.import_app(self.app_uri) 2020-02-22T16:00:08.684591+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/util.py”, line 358, in import_app 2020-02-22T16:00:08.684591+00:00 app[web.1]: mod = importlib.import_module(module) 2020-02-22T16:00:08.684592+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:08.684592+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:08.684593+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:08.684593+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:08.684594+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:08.684594+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:08.684594+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:08.684595+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:08.684595+00:00 app[web.1]: File “/app/website/wsgi.py”, line 16, in <module> 2020-02-22T16:00:08.684595+00:00 app[web.1]: application = get_wsgi_application() 2020-02-22T16:00:08.684596+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/core/wsgi.py”, line 12, in get_wsgi_application 2020-02-22T16:00:08.684596+00:00 app[web.1]: django.setup(set_prefix=False) 2020-02-22T16:00:08.684596+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/init.py”, line 19, in setup 2020-02-22T16:00:08.684597+00:00 app[web.1]: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2020-02-22T16:00:08.684597+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 76, in getattr 2020-02-22T16:00:08.684597+00:00 app[web.1]: self._setup(name) 2020-02-22T16:00:08.684598+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 63, in _setup 2020-02-22T16:00:08.684598+00:00 app[web.1]: self._wrapped = Settings(settings_module) 2020-02-22T16:00:08.684598+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 142, in init 2020-02-22T16:00:08.684599+00:00 app[web.1]: mod = importlib.import_module(self.SETTINGS_MODULE) 2020-02-22T16:00:08.684599+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:08.684600+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:08.684600+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:08.684600+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:08.684600+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:08.684601+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:08.684601+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:08.684601+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:08.684601+00:00 app[web.1]: File “/app/website/settings.py”, line 2, in <module> 2020-02-22T16:00:08.684602+00:00 app[web.1]: import django_heroku 2020-02-22T16:00:08.684602+00:00 app[web.1]: ModuleNotFoundError: No module named ‘django_heroku’ 2020-02-22T16:00:08.691208+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [11] [INFO] Worker exiting (pid: 11) 2020-02-22T16:00:08.695854+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [10] [ERROR] Exception in worker process 2020-02-22T16:00:08.695857+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:08.695858+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 583, in spawn_worker 2020-02-22T16:00:08.695859+00:00 app[web.1]: worker.init_process() 2020-02-22T16:00:08.695860+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 119, in init_process 2020-02-22T16:00:08.695860+00:00 app[web.1]: self.load_wsgi() 2020-02-22T16:00:08.695861+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/workers/base.py”, line 144, in load_wsgi 2020-02-22T16:00:08.695861+00:00 app[web.1]: self.wsgi = self.app.wsgi() 2020-02-22T16:00:08.695862+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 67, in wsgi 2020-02-22T16:00:08.695863+00:00 app[web.1]: self.callable = self.load() 2020-02-22T16:00:08.695863+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 49, in load 2020-02-22T16:00:08.695864+00:00 app[web.1]: return self.load_wsgiapp() 2020-02-22T16:00:08.695864+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 39, in load_wsgiapp 2020-02-22T16:00:08.695865+00:00 app[web.1]: return util.import_app(self.app_uri) 2020-02-22T16:00:08.695865+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/util.py”, line 358, in import_app 2020-02-22T16:00:08.695866+00:00 app[web.1]: mod = importlib.import_module(module) 2020-02-22T16:00:08.695866+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:08.695867+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:08.695867+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:08.695868+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:08.695868+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:08.695869+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:08.695869+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:08.695870+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:08.695870+00:00 app[web.1]: File “/app/website/wsgi.py”, line 16, in <module> 2020-02-22T16:00:08.695870+00:00 app[web.1]: application = get_wsgi_application() 2020-02-22T16:00:08.695871+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/core/wsgi.py”, line 12, in get_wsgi_application 2020-02-22T16:00:08.695871+00:00 app[web.1]: django.setup(set_prefix=False) 2020-02-22T16:00:08.695872+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/init.py”, line 19, in setup 2020-02-22T16:00:08.695872+00:00 app[web.1]: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2020-02-22T16:00:08.695872+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 76, in getattr 2020-02-22T16:00:08.695873+00:00 app[web.1]: self._setup(name) 2020-02-22T16:00:08.695878+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 63, in _setup 2020-02-22T16:00:08.695879+00:00 app[web.1]: self._wrapped = Settings(settings_module) 2020-02-22T16:00:08.695879+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/django/conf/init.py”, line 142, in init 2020-02-22T16:00:08.695880+00:00 app[web.1]: mod = importlib.import_module(self.SETTINGS_MODULE) 2020-02-22T16:00:08.695880+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/importlib/init.py”, line 126, in import_module 2020-02-22T16:00:08.695881+00:00 app[web.1]: return _bootstrap._gcd_import(name[level:], package, level) 2020-02-22T16:00:08.695886+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 994, in _gcd_import 2020-02-22T16:00:08.695886+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 971, in _find_and_load 2020-02-22T16:00:08.695887+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 955, in _find_and_load_unlocked 2020-02-22T16:00:08.695887+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 665, in _load_unlocked 2020-02-22T16:00:08.695888+00:00 app[web.1]: File “<frozen importlib._bootstrap_external>”, line 678, in exec_module 2020-02-22T16:00:08.695888+00:00 app[web.1]: File “<frozen importlib._bootstrap>”, line 219, in _call_with_frames_removed 2020-02-22T16:00:08.695888+00:00 app[web.1]: File “/app/website/settings.py”, line 2, in <module> 2020-02-22T16:00:08.695889+00:00 app[web.1]: import django_heroku 2020-02-22T16:00:08.695889+00:00 app[web.1]: ModuleNotFoundError: No module named ‘django_heroku’ 2020-02-22T16:00:08.696550+00:00 app[web.1]: [2020-02-22 16:00:08 +0000] [10] [INFO] Worker exiting (pid: 10) 2020-02-22T16:00:08.768751+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:08.768803+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 209, in run 2020-02-22T16:00:08.769251+00:00 app[web.1]: self.sleep() 2020-02-22T16:00:08.769289+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 357, in sleep 2020-02-22T16:00:08.769678+00:00 app[web.1]: ready = select.select([self.PIPE[0]], [], [], 1.0) 2020-02-22T16:00:08.769717+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 242, in handle_chld 2020-02-22T16:00:08.770004+00:00 app[web.1]: self.reap_workers() 2020-02-22T16:00:08.770047+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 525, in reap_workers 2020-02-22T16:00:08.770495+00:00 app[web.1]: raise HaltServer(reason, self.WORKER_BOOT_ERROR) 2020-02-22T16:00:08.770562+00:00 app[web.1]: gunicorn.errors.HaltServer: <HaltServer ‘Worker failed to boot.’ 3> 2020-02-22T16:00:08.770594+00:00 app[web.1]: 2020-02-22T16:00:08.770595+00:00 app[web.1]: During handling of the above exception, another exception occurred: 2020-02-22T16:00:08.770595+00:00 app[web.1]: 2020-02-22T16:00:08.770628+00:00 app[web.1]: Traceback (most recent call last): 2020-02-22T16:00:08.770657+00:00 app[web.1]: File “/app/.heroku/python/bin/gunicorn”, line 8, in <module> 2020-02-22T16:00:08.770835+00:00 app[web.1]: sys.exit(run()) 2020-02-22T16:00:08.770873+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py”, line 58, in run 2020-02-22T16:00:08.771084+00:00 app[web.1]: WSGIApplication(“%(prog)s [OPTIONS] [APP_MODULE]”).run() 2020-02-22T16:00:08.771134+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 228, in run 2020-02-22T16:00:08.771329+00:00 app[web.1]: super().run() 2020-02-22T16:00:08.771333+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/app/base.py”, line 72, in run 2020-02-22T16:00:08.771485+00:00 app[web.1]: Arbiter(self).run() 2020-02-22T16:00:08.771490+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 229, in run 2020-02-22T16:00:08.771679+00:00 app[web.1]: self.halt(reason=inst.reason, exit_status=inst.exit_status) 2020-02-22T16:00:08.771683+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 342, in halt 2020-02-22T16:00:08.771911+00:00 app[web.1]: self.stop() 2020-02-22T16:00:08.771955+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 393, in stop 2020-02-22T16:00:08.772195+00:00 app[web.1]: time.sleep(0.1) 2020-02-22T16:00:08.772200+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 242, in handle_chld 2020-02-22T16:00:08.772398+00:00 app[web.1]: self.reap_workers() 2020-02-22T16:00:08.772403+00:00 app[web.1]: File “/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py”, line 525, in reap_workers 2020-02-22T16:00:08.772657+00:00 app[web.1]: raise HaltServer(reason, self.WORKER_BOOT_ERROR) 2020-02-22T16:00:08.772687+00:00 app[web.1]: gunicorn.errors.HaltServer: <HaltServer ‘Worker failed to boot.’ 3> 2020-02-22T16:00:08.893332+00:00 heroku[web.1]: State changed from up to crashed 2020-02-22T16:00:08.877687+00:00 heroku[web.1]: Process exited with status 1


at=error code=H10 desc=“App crashed” method=GET path=“/” host=arcane-citadel-79281.herokuapp.com request_id=ac173fdb-c496-44b3-959a-96001a054c68 fwd=“217.175.129.145” dyno= connect= service= status=503 bytes= protocol=https 2020-02-22T16:08:56.016148+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=arcane-citadel-79281.herokuapp.com request_id=84ba30e5-1f3a-4dba-8266-40c0fe4340a6 fwd=“217.175.129.145” dyno= connect= service= status=503 bytes= protocol=https

How can I solve this problem??

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:36

github_iconTop GitHub Comments

1reaction
ezyhackscommented, Aug 22, 2020

@vikaspal1704 Procfile Content: gunicorn projectname.wsgi:application --log-file - --log-level debug

Your Procfile should look like this web: gunicorn ecommerce.wsgi --log-file - ecommerce is my project name

0reactions
Abh-aycommented, Sep 5, 2022

2022-09-05T09:14:39.802861+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T09:14:42.971783+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:7559 e_shopper.wsgi:application 2022-09-05T09:14:44.000000+00:00 app[api]: Build succeeded 2022-09-05T09:14:44.620228+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:7559 2022-09-05T09:15:43.525343+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T09:15:43.564035+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T09:15:43.712357+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T09:15:43.772542+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T09:15:43.776261+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T09:15:48.209861+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:50380 e_shopper.wsgi:application 2022-09-05T09:15:49.730884+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:50380 2022-09-05T09:16:05.307373+00:00 heroku[router]: at=error code=H20 desc=“App boot timeout” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=adf72a64-f8c6-488b-9189-4ab367131f3f fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:16:48.494362+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T09:16:48.529481+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T09:16:48.724756+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T09:16:48.776665+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T09:16:49.736054+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=0ff10e16-a8a9-4ba6-8893-eac3cc474913 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:16:51.163460+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=3e8594d4-90ad-462c-9794-9a4c680b6d5f fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:16:53.030602+00:00 heroku[router]: a requirements.txt t=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=743277b4-963f-4e58-929a-259afc5551f1 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:17:33.389246+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=74861233-06d0-4a02-8034-4cdcea5673cc fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:17:33.833072+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=8ef632ce-7447-48ea-a9b9-8ff4f4834378 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:18:04.094805+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=c4fbf0a1-564a-428d-9331-44ac72d8faf8 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:18:04.524957+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=e6e1fcdb-6251-46fe-9ad6-08cc12cfd6fc fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:46:08.000000+00:00 app[api]: Build started by user abhayyy1912@gmail.com 2022-09-05T09:46:15.624426+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=94aeae57-278f-45a4-a19e-8ff254d5331b fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:46:16.158450+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=0be321ee-e673-41ee-a3ab-84b0086a4e27 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:46:16.414709+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=569c3ead-706a-427b-a36c-30ce8d949037 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:46:29.068001+00:00 app[api]: Deploy ec81342b by user abhayyy1912@gmail.com 2022-09-05T09:46:29.068001+00:00 app[api]: Release v13 created by user abhayyy1912@gmail.com 2022-09-05T09:46:29.340161+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T09:46:32.975712+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:34746 e_shopper.wsgi:application 2022-09-05T09:46:34.000000+00:00 app[api]: Build succeeded 2022-09-05T09:46:35.048981+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:34746 2022-09-05T09:47:33.755022+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T09:47:33.788271+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T09:47:33.943335+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T09:47:33.994231+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T09:47:33.997095+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T09:47:37.534259+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:51902 e_shopper.wsgi:application 2022-09-05T09:47:38.909746+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:51902 2022-09-05T09:47:55.600947+00:00 heroku[router]: at=error code=H20 desc=“App boot timeout” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=f277645e-387f-4233-af42-55a603d01b22 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:48:38.028836+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T09:48:38.069446+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T09:48:38.237210+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T09:48:38.299768+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T09:48:39.291660+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=76359613-f8d9-47b2-b557-e4983b79bcaa fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:48:40.957720+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=caf767dd-2299-48a7-93ed-e20c91db48a2 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:48:42.592207+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=2d9f09b7-86f3-46ea-a590-52ffc75e8042 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:49:43.067281+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=47e6b8f4-a020-4618-b22b-7efffefeb2c7 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:49:43.460518+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=c20c2d11-5bb2-402e-9192-0fab1970146e fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:52:50.000000+00:00 app[api]: Build started by user abhayyy1912@gmail.com 2022-09-05T09:53:10.370604+00:00 app[api]: Deploy c276cb77 by user abhayyy1912@gmail.com 2022-09-05T09:53:10.370604+00:00 app[api]: Release v14 created by user abhayyy1912@gmail.com 2022-09-05T09:53:10.856908+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T09:53:14.040135+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:52584 e_shopper.wsgi:application 2022-09-05T09:53:15.000000+00:00 app[api]: Build succeeded 2022-09-05T09:53:15.530973+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:52584 2022-09-05T09:54:14.308138+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T09:54:14.597173+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T09:54:14.749082+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T09:54:14.832675+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T09:54:15.940424+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=58e4d390-b3fb-4fea-96cd-ff3e3691629c fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T09:54:17.312438+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=4d3669e2-59bb-46fe-8b3c-53f5fb46f95d fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:04:39.000000+00:00 app[api]: Build started by user abhayyy1912@gmail.com 2022-09-05T10:05:00.111581+00:00 app[api]: Deploy 3bb062d5 by user abhayyy1912@gmail.com 2022-09-05T10:05:00.111581+00:00 app[api]: Release v15 created by user abhayyy1912@gmail.com 2022-09-05T10:05:00.868049+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T10:05:05.000000+00:00 app[api]: Build succeeded 2022-09-05T10:05:05.206981+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:47900 e_shopper.wsgi:application 2022-09-05T10:05:07.780414+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:47900 2022-09-05T10:06:05.742616+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T10:06:05.789291+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T10:06:05.992214+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T10:06:06.087484+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T10:06:06.090910+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T10:06:10.961444+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:18082 e_shopper.wsgi:application 2022-09-05T10:06:12.984229+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:18082 2022-09-05T10:06:27.109821+00:00 heroku[router]: at=error code=H20 desc=“App boot timeout” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=4b4f7f00-2792-4aeb-ba40-555a21f19322 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:07:11.367542+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T10:07:11.467758+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T10:07:11.683797+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T10:07:11.838645+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T10:07:13.473689+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=89521f37-ac3f-422f-9449-100a4face6a7 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:07:13.642849+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=7c21c358-d4c9-4a78-a34d-95fcf6ffee96 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:07:15.295233+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=2c6b4b6e-65d9-4a14-9597-7400325fd0b8 fwd=“49.34.157.223” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:15:56.000000+00:00 app[api]: Build started by user abhayyy1912@gmail.com 2022-09-05T10:16:17.169747+00:00 app[api]: Release v16 created by user abhayyy1912@gmail.com 2022-09-05T10:16:17.169747+00:00 app[api]: Deploy 84de73df by user abhayyy1912@gmail.com 2022-09-05T10:16:17.485178+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T10:16:20.861303+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:4527 e_shopper.wsgi:application 2022-09-05T10:16:22.000000+00:00 app[api]: Build succeeded 2022-09-05T10:16:22.349177+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:4527 2022-09-05T10:17:21.289534+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T10:17:21.347173+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T10:17:21.506783+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T10:17:21.584657+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T10:17:21.589247+00:00 heroku[web.1]: State changed from crashed to starting 2022-09-05T10:17:25.910612+00:00 heroku[web.1]: Starting process with command waitress-serve --listen=localhost:17221 e_shopper.wsgi:application 2022-09-05T10:17:27.969637+00:00 app[web.1]: INFO:waitress:Serving on http://127.0.0.1:17221 2022-09-05T10:17:54.617271+00:00 heroku[router]: at=error code=H20 desc=“App boot timeout” method=GET path=“/” host=j-k-textiles.herokuapp.com request_id=41c5e929-aa29-4217-b58b-63271cad989c fwd=“49.34.133.238” dyno= connect= service= status=503 bytes= protocol=https 2022-09-05T10:18:26.389727+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch 2022-09-05T10:18:26.468531+00:00 heroku[web.1]: Stopping process with SIGKILL 2022-09-05T10:18:27.135575+00:00 heroku[web.1]: State changed from starting to crashed 2022-09-05T10:18:26.686761+00:00 heroku[web.1]: Process exited with status 137 2022-09-05T10:18:29.490275+00:00 heroku[router]: at=error code=H10 desc=“App crashed” method=GET path=“/favicon.ico” host=j-k-textiles.herokuapp.com request_id=35e81d9a-439e-46fc-9f72-c3c977629f10 fwd=“49.34.133.238” dyno= connect= service= status=503 bytes= protocol=https

GETTING ERROR IN favicon.ico PLEASE HELP ME TO SOLVE THIS PROBLEM i’ve been try to solve this for last two weeks

Read more comments on GitHub >

github_iconTop Results From Across the Web

Django: Heroku Failing to launch, at=error code=H10 desc ...
It looks like heroku can't start the webserver and so changed the app status to crashed. Everytime when I ...
Read more >
Causes of Heroku H10-App Crashed ... - DEV Community ‍ ‍
This article is focused on the Heroku H10-App crashed error code which is thrown when an application crashes on Heroku. This is as...
Read more >
[Solved]-django 2 deploy to heroku fail - at=error code=H10 ...
Coding example for the question django 2 deploy to heroku fail - at=error code=H10 desc="App crashed"-django.
Read more >
Heroku Error Codes
A crashed web dyno or a boot timeout on the web dyno will present this ... heroku[router]: at=error code=H10 desc="App crashed" method=GET ...
Read more >
My django web with heroku keeps having errors - Python
I've been building my portfolio web page with Django. ... heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found