I've been trying to migrate from Spring Boot 1.x to Spring Boot 2.4.2. I have a problem with /health endpoint of actuator which says:
"clientConfigServer": {
"status": "UNKNOWN",
"details": {
"error": "no property sources located"
}
}
in active profile native. For older version everything worked as expected and I was receiving:
"configServer": {
"status": "UP",
"propertySources": [
"file:C:\\Users\user\projects\tagging.yml",
]
}
Is this a bug or I am doing something wrong?