我得到了
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54当我尝试推到Heroku时,这并不是我第一次在Heroku上部署这个应用程序,但是突然Heroku开始抛出这个错误。
我试过了
将git config --global http.postBuffer 524288000
dynos
我用的是macos-catalina
这是完全错误
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Node.js app detected
remote:
remote: -----> Creating runtime environment
remote:
remote: NPM_CONFIG_LOGLEVEL=error
remote: NODE_ENV=production
remote: NODE_MODULES_CACHE=true
remote: NODE_VERBOSE=false
remote:
remote: -----> Installing binaries
remote: engines.node (package.json): unspecified
remote: engines.npm (package.json): unspecified (use default)
remote:
remote: Resolving node version 12.x...
remote: Downloading and installing node 12.18.3
remote: Using default npm version: 6.14.6
remote:
remote: -----> Restoring cache
remote: - node_modules
remote:
remote: -----> Installing dependencies
remote: Installing node modules
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly任何帮助都将不胜感激。谢谢
发布于 2020-07-29 16:13:41
如果有人面临类似的问题,请查看Heroku日志,在我的例子中,next.js构建占用了太多内存,因此部署被拒绝,尽管push是成功的。
https://stackoverflow.com/questions/63136630
复制相似问题