I recently upgraded our application to Spring Boot 2.3.3 , Spring Cloud 3.1.5 and also updated our config server to Spring Cloud Config Server from Config Server.
The application is working fine but I am having issue with picking up properties from git repo if any are updated.
Earlier before I updated our Spring versions and config server, whenever I change the property value in properties file in git and restart the application, the app picked up the latest updated property.
But now with the upgrades, when I update the property and restart the web-app, its still not picking up the updated property. Found a workaround for now that I need to synchronize mirror refresh in Spring Cloud Config Server and then restart the app and the updated property value is picked up by the app.
But wanted to know if there is a solution for this instead of the work around so that it works like it used to earlier. I tried many ways but nothing works. I had the actuator dependencies and also property value set to refresh already set in my app. But they are not working. Please let me know how to proceed with this issue.