Auto-refresh of properties not working in Spring Cloud Config Server. The properties are getting refreshed in Config server but not in Config Client.
I have configured the /monitor endpoint as a webhook in GitLab.
application.properties of client application
spring.cloud.config.uri=http://localhost:8888/config
spring.config.import=optional:configserver:http://localhost:8888/config
spring.cloud.config.label=uat
spring.cloud.config.enabled=true
spring.cloud.bus.enabled=true
spring.profiles.active=uat
server.port=8081
logging.level.root=INFO
runtime-env=local
management.security.enabled=false
management.endpoints.web.exposure.include=*
spring.application.name=thoth
spring.cloud.stream.kafka.binder.zkNodes=localhost:2181
spring.cloud.stream.kafka.binder.brokers=localhost:19092
The Client application is not able to receive the RefreshRemoteApplicationEvent. How do I configure my client to start receiving these events?
I tried changing one of the properties from GitLab and the properties of Config server changed automatically, however the property change did not reflect on Client side.