当我在django中运行collectstatic
时,我收到此错误。
File "/usr/lib/python2.7/ssl.py", line 578, in __init__
raise ValueError("do_handshake_on_connect should not be specified for non-blocking sockets")
ValueError: do_handshake_on_connect should not be specified for non- blocking sockets
有人知道发生了什么吗?
答案 0 :(得分:1)
我的一个文件中有以下代码,这就是我遇到此问题的原因,并确定它放在错误的文件中。
from gevent import monkey
monkey.patch_all()