Now the issue changed from 500 error to 403 error.
I think the core problem seems to occur during the reload process of the "JsonServiceRegistry".
When it reloads, it appears to remove all registered services for short time.
After running 1000 requests, randomly I get 403 ("Service Access Denied") error for registered service:
```
2024-12-27 17:35:40,095 INFO [org.apereo.inspektr.audit.AuditTrailManager] - <{
"who" : "audit:unknown",
"what" : {
"result" : "Service Access Granted",
"service" : "
http://example.com/"
},
"action" : "SERVICE_ACCESS_ENFORCEMENT_TRIGGERED",
"when" : "2024-12-27T16:35:40.095331828",
"clientIpAddress" : "127.0.0.1",
"serverIpAddress" : "127.0.0.1",
"geoLocation" : "unknown"
}
2024-12-27 17:35:40,265 INFO [org.apereo.cas.services.mgmt.AbstractServicesManager] - <Loaded [860] service(s) from [JsonServiceRegistry].>
2024-12-27 17:35:40,273 INFO [org.apereo.inspektr.audit.AuditTrailManager] - <{
"who" : "audit:unknown",
"what" : {
"result" : "Service Access Denied",
"service" : "
http://example.com/"
},
"action" : "SERVICE_ACCESS_ENFORCEMENT_TRIGGERED",
"when" : "2024-12-27T16:35:40.273405206",
"clientIpAddress" : "127.0.0.1",
"serverIpAddress" : "127.0.0.1",
"geoLocation" : "unknown"
}
2024-12-27 17:35:45,275 INFO [org.apereo.inspektr.audit.AuditTrailManager] - <{
"who" : "audit:unknown",
"what" : {
"result" : "Service Access Granted",
"service" : "
http://example.com/"
},
"action" : "SERVICE_ACCESS_ENFORCEMENT_TRIGGERED",
"when" : "2024-12-27T16:35:45.274841283",
"clientIpAddress" : "127.0.0.1",
"serverIpAddress" : "127.0.0.1",
"geoLocation" : "unknown"
}
```