#24704 closed Bug (fixed)
Development server does not restart on SynaxError in models.py
Reported by: | Artem Rizhov | Owned by: | Aymeric Augustin |
---|---|---|---|
Component: | Core (Management commands) | Version: | 1.7 |
Severity: | Normal | Keywords: | |
Cc: | artem.rizhov@… | Triage Stage: | Ready for checkin |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Django documentation states:
each time you change Python code while the server is running, the server will check your entire Django project for errors (see the check command). If any errors are found, they will be printed to standard output, but it won’t stop the server.
https://docs.djangoproject.com/en/1.7/ref/django-admin/#runserver-port-or-address-port
However in my case the server process finishes with exit code 1 when syntax error appears in admin.py or models.py. Below is the error message that I see in my console.
File "/home/.../src/core/admin.py", line 16 foo = ^ SyntaxError: invalid syntax
So it seems there is either a bug or a mistake in the documentation.
Django 1.7.5
Python 2.7.6
virtualenv 1.11.4
Ubuntu 14.04.2 LTS
Attachments (1)
Change History (24)
follow-up: 2 comment:1 by , 10 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 by , 10 years ago
Resolution: | invalid |
---|---|
Status: | closed → new |
Thank you for your explanation. To be honest, it does not help at all. The question is not about the program, but about the dev server which hosts it.
Please note that the server does not exit when syntax error happens in views.py. So, it really makes sense to explain how you did that impossible thing! ;) I'm joking, please don't waste your time for explanation of this. But please believe many perfectionists have a lot of another work and do not have time to dive into the Django core.
The server and the application are two different entities. I don't think this should be clear that the server can not handle syntax errors in the app. Furthermore, it does in some cases. And even furthermore, I'm sure it is possible to implement such feature for any cases, even with Python, for example, with a master process which is watching and rerunning the app when it exits with error.
When I read documentation I'd want to believe that the written text states true. If not, why not to add a note about this? I found few tickets about this problem with both fixed and rejected statuses. So I came to the documentation while searching for the truth. But it lies :) Just replace "any errors" with something more honest. I'd not spend time to write this ticket if the doc contains notes about this, and you'd not spend time to answer to my question. And I'm sure many people will thank you.
But it would be really better if Django dev server can handle any errors. I've started learning this issue because I've made too many manual restarts of the dev server while working on site admin area.
The simplest workaround is while true; do ./manage.py runserver ; sleep 1 ; done
. But it does not work well with PyCharm which I really love.
comment:3 by , 10 years ago
Maybe I've selected wrong component for this issue? Does it make sense to change it from "Core (System checks)" to "Management commands" or "Other"?
by , 10 years ago
Attachment: | 24704.diff added |
---|
comment:9 by , 10 years ago
Cc: | added |
---|
comment:10 by , 10 years ago
Summary: | Development server do not restart on SynaxError → Development server does not restart on SynaxError |
---|
comment:11 by , 9 years ago
Component: | Core (System checks) → Core (Management commands) |
---|---|
Has patch: | unset |
Resolution: | fixed |
Status: | closed → new |
Summary: | Development server does not restart on SynaxError → Development server does not restart on SynaxError in models.py |
Triage Stage: | Unreviewed → Accepted |
It seems that before 0d2c8ff2be733c7cc83a023bbafe0258faa5603c syntax errors in models.py didn't stop the server. Now it does:
Traceback (most recent call last): File "manage.py", line 10, in <module> execute_from_command_line(sys.argv) File "/home/tim/code/django/django/core/management/__init__.py", line 428, in execute_from_command_line utility.execute() File "/home/tim/code/django/django/core/management/__init__.py", line 420, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/home/tim/code/django/django/core/management/__init__.py", line 288, in fetch_command commands = get_commands() File "/home/tim/code/django/django/core/management/__init__.py", line 125, in get_commands apps.populate_models() File "/home/tim/code/django/django/apps/registry.py", line 123, in populate_models app_config.import_models(all_models) File "/home/tim/code/django/django/apps/base.py", line 164, in import_models self.models_module = import_module(models_module_name) File "/home/tim/.virtualenvs/django34/lib/python3.4/importlib/__init__.py", line 109, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "<frozen importlib._bootstrap>", line 2231, in _gcd_import File "<frozen importlib._bootstrap>", line 2214, in _find_and_load File "<frozen importlib._bootstrap>", line 2203, in _find_and_load_unlocked File "<frozen importlib._bootstrap>", line 1200, in _load_unlocked File "<frozen importlib._bootstrap>", line 1129, in _exec File "<frozen importlib._bootstrap>", line 1444, in exec_module File "<frozen importlib._bootstrap>", line 1549, in get_code File "<frozen importlib._bootstrap>", line 1509, in source_to_code File "<frozen importlib._bootstrap>", line 321, in _call_with_frames_removed File "/home/tim/code/mysite/polls/models.py", line 15 class MyModelmodels.Model):
Not sure if the old behavior can be restored, but reopening in case someone would like to investigate.
comment:13 by , 9 years ago
Has patch: | set |
---|
I had a look at this. Unfortunately our reloading technique is to watch imported Python files which makes things complicated (in addition to requiring hacks for everything that isn't a Python file).
See this PR for a possible "solution".
comment:14 by , 9 years ago
I'm not proud of that PR but I think it's an improvement and it should go in until we reconsider the autoreloader's design.
comment:15 by , 9 years ago
Patch needs improvement: | set |
---|
comment:16 by , 9 years ago
Patch needs improvement: | unset |
---|
Patch was improved.
Since it can be a real inconvenience in day-to-day development and it can be considered a regression in 1.7, it would make sense to backport at least to 1.8 (LTS). The patch doesn't apply cleanly but shouldn't be very hard to backport.
If I want to backport, I have to add an entry in the release notes for 1.8.5, anything else?
comment:17 by , 9 years ago
Patch needs improvement: | set |
---|
Just release notes are required for the backport.
Marking as "Patch needs improvement" as it seems the patch still doesn't work if pyinotify is installed. It does work on Windows.
comment:18 by , 9 years ago
Patch needs improvement: | unset |
---|
comment:19 by , 9 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
A
SyntaxError
is a Python concept, not something relevant to the check command. When writing the docs, I'd like to assume enough familiarity with Python that we don't need to explain that a program can't run if it contains syntax errors. Hope that explanation helps.