英文:
heroku Getting at=error code=H13 desc="Connection closed without response" method=GET path="/api/test" service=28795ms status=503
问题
在一个在本地运行完美的Spring Boot应用中,我遇到了这个错误。我远程连接Heroku应用到我自己服务器的数据库。它已经成功部署,但我无法得到响应。
错误信息如下:
at=error code=H13 desc="连接关闭且无响应" method=GET path="/api/test" dyno=web.1 connect=1ms service=28795ms status=503 bytes=0 protocol=https
英文:
I am getting this error in a spring boot app which works perfectly in local
I connect the heroku app remotely to the database of my own server.
It is deployed susscessfully but I could not get a response
at=error code=H13 desc="Connection closed without response" method=GET path="/api/test" dyno=web.1 connect=1ms service=28795ms status=503 bytes=0 protocol=https
答案1
得分: 1
这是一个HTTP错误代码。请尝试在此处查看您的错误代码 heroku错误代码
英文:
This is an HTTP error code. Try to check your error code out here heroku error code
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论