首页 文章

django使用教程应用程序中断系统调用

提问于
浏览
0

即使只使用轮询应用程序,我仍然会收到此间歇性错误 . 我的应用程序非常简单,至少在目前,它只是通过JSON向jquery表提供一个小的csv文件 . 下面列出了回溯和我的系统配置 . 提前致谢!

代码

Traceback(最近一次调用最后一次):文件“manage.py”,第14行,在execute_manager(settings)文件中“/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site -packages / django / core / management / init.py“,第459行,在execute_manager utility.execute()文件中”/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site -packages / django / core / management / init.py“,第382行,执行self.fetch_command(子命令).run_from_argv(self.argv)文件”/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5 /lib/python2.6/site-packages/django/core/management/base.py“,第196行,在run_from_argv self.execute(* args,** options.dict)文件”/ home / baldig / shared_libraries / centos64 /pkgs/python/2.6.5/lib/python2.6/site-packages/django/core/management/base.py“,第232行,执行输出= self.handle(* args,** options)文件” /home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site-packages/django/core/management/commands/runserver.py“,第69行,在handle self.ru中n(* args,** options)文件“/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site-packages/django/core/management/commands/runserver.py” ,第80行,运行self.inner_run(* args,** options)文件“/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site-packages/django/core/ management / commands / runserver.py“,第111行,在inner_run中ipv6 = self.use_ipv6,threading = threading)文件”/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/site -packages / django / core / servers / basehttp.py“,第253行,运行httpd.serve_forever()文件”/home/baldig/shared_libraries/centos64/pkgs/python/2.6.5/lib/python2.6/SocketServer .py“,第224行,在serve_forever r,w,e = select.select([self],[],[],poll_interval)select.error:(4,'Interrupted system call')

配置#

Django版本1.4.1 Python 2.6.5 CentOS 6 Intel Xeon E5630 64GB RAM

1 回答

  • 2

    请检查this thread与SocketServer.py, 'Interrupted system call' 相同的错误 .

相关问题