我如何解决 django collectstatic 中的 ssl 错误
how do i solve ssl error in django collectstatic
当我在 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
有谁知道是怎么回事吗?
我的一个文件中有下面这段代码,这就是我遇到这个问题的原因,我确信它放在了错误的文件中。
from gevent import monkey
monkey.patch_all()
当我在 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
有谁知道是怎么回事吗?
我的一个文件中有下面这段代码,这就是我遇到这个问题的原因,我确信它放在了错误的文件中。
from gevent import monkey
monkey.patch_all()