Cannot disable Spring Cloud Config via spring.cloud.config.enabled:false

后端 未结 5 1517
无人及你
无人及你 2021-01-04 03:51

Let me preface this by saying that I\'m not using Spring Cloud Config directly, it is transitive via Spring Cloud Hystrix starter.

When only using @EnableHystr

5条回答
  •  清酒与你
    2021-01-04 04:25

    I had the same problem, I wanted to have the config server disabled (as we do not need it so far) but the property mentioned above is not correct for RC1 at least.

    spring.cloud.enabled
    

    Should be:

    spring.cloud.config.enabled
    

提交回复
热议问题