我有一个简单的配置服务器实现,当我浏览/health端点时,我得到:
{
status:"UP",
"details":{
"configserver":{
"status":"UP",
"details":{
"repositories":[
{
...在我的配置服务器再次检查configserver运行状况的情况下,如何停止此操作。这会导致配置服务器多次调用git,这在我的场景中是不需要的。
发布于 2019-09-27 02:53:07
设置spring.cloud.config.server.health.enabled=false
https://stackoverflow.com/questions/58122608
复制相似问题