错误:RPC失败; curl 6 SSL读取:错误:00000000:lib(0):func(0):reason(0),err

时间:2016-08-06 17:41:05

标签: python git heroku flask nltk

我正在尝试在heroku上部署flask app。具体来说,NLTK数据按照this解决方案提供给服务器。出于某种原因,我不断收到此错误。所以我尝试创建一个新的Heroku项目并推送我的本地项目,但仍然遇到同样的错误。

C:\Users\mysys\mywebservices-test\warm-sierra-60310>git push heroku mas
ter
Counting objects: 23005, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (22954/22954), done.
error: RPC failed; curl 6 SSL read: error:00000000:lib(0):func(0):reason(0), err
no 10053
The remote end hung up unexpectedly/23005), 499.96 MiB | 20.00 KiB/s
Writing objects: 100% (23005/23005), 1017.63 MiB | 1.88 MiB/s, done.
Total 23005 (delta 14999), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date

这个项目在我的本地机器上完美运行。

C:\Users\mysys\mywebservices-test\warm-sierra-60310>python app.py
 * Running on http://127.0.0.1:5000/
 * Restarting with reloader
127.0.0.1 - - [06/Aug/2016 23:05:38] "GET / HTTP/1.1" 200 -
127.0.0.1 - - [06/Aug/2016 23:05:40] "GET / HTTP/1.1" 200 -

有什么我可以尝试的吗?如果有什么不清楚,请告诉我。

1 个答案:

答案 0 :(得分:1)

我遇到了类似的问题,最后通过以下方法解决了问题:

请看这里:Git push error: RPC failed; result=56, HTTP code = 200 fatal: The remote end hung up unexpectedly fatal

问题很可能是由你的低Git缓冲区引起的,这对你的项目是不够的。也许你可以尝试增加你的Git的HTTP缓冲区。

在git中尝试这个:

git config http.postBuffer 524288000

这会将你的Git缓冲区增加到524288000。