How to fix issue in Heroku '[heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before retry...'?
How to fix issue in Heroku '[heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before retry...'?
Heroku在SpringBoot应用中调度后抛出如下异常:
[heroku-exec] ERROR: Could not connect to proxy! Waiting 10 seconds before retry...
[heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before retry...
系统:Heroku、SpringBoot、org.springframework.scheduling.annotation.EnableScheduling
我通过重启中断了它。
在我的上下文中这意味着什么以及如何解决它?
谢谢!
这不是您的应用抛出的异常。这是一个警告 Heroku Exec process 无法连接到允许您 运行 命令如 heroku ps:exec
或 heroku java:jconsole
的代理。发生这种情况的原因有很多(网络故障等)。
忽略这些是安全的,只要您不执行这些命令即可。否则你可以通过 运行ning:
禁用
$ heroku features:disable runtime-heroku-exec
Heroku在SpringBoot应用中调度后抛出如下异常:
[heroku-exec] ERROR: Could not connect to proxy! Waiting 10 seconds before retry...
[heroku-exec] ERROR: Could not connect to proxy! Waiting 20 seconds before retry...
系统:Heroku、SpringBoot、org.springframework.scheduling.annotation.EnableScheduling
我通过重启中断了它。
在我的上下文中这意味着什么以及如何解决它?
谢谢!
这不是您的应用抛出的异常。这是一个警告 Heroku Exec process 无法连接到允许您 运行 命令如 heroku ps:exec
或 heroku java:jconsole
的代理。发生这种情况的原因有很多(网络故障等)。
忽略这些是安全的,只要您不执行这些命令即可。否则你可以通过 运行ning:
禁用$ heroku features:disable runtime-heroku-exec