Pydev 中的 Django 会产生多个进程?
我在 Eclipse 中的 PyDev 中设置了我的项目。每当我调试项目时,一切都进展顺利,但是一旦我尝试重新启动 Django 服务器,它就会生成一个额外的 runserver 进程,阻塞我用于服务器的端口 (8000
)。有没有解决方法可以确保它确实杀死服务器?
I have my project setup in PyDev in Eclipse. Whenever I debug my project, things go great, but once I try to restart the Django server, it spawns an additional runserver process, blocking up the port I'm using for the server (8000
). Is there a workaround to make sure it really kills the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次对任何 Python 代码进行更改时,Django 都会重新加载服务器(运行服务器的另一个实例并杀死旧的实例)。从 Pydev 启动时似乎没有正确处理。您可以通过将
--noreload
参数添加到服务器启动命令来停用此功能。更多信息: <代码>--noreload,
pydev/django
(查找下面的注释作为 Django 运行/调试)Django reloads the server each time changes are made to any Python code (running another instance of the server and killing the old one). It seems that it's not handled properly when launched from Pydev. You can deactivate this by adding the
--noreload
argument to the server starting command.More information:
--noreload
,pydev/django
(look for the remark below Run/Debug as Django)