-
Task
-
Resolution: Done
-
Normal
-
None
-
None
We're seeing this trace in stage at the swatch contract service startup:
2023-12-14 06:35:16,540 WARN [com.red.clo.com.clo.con.ClowderConfigSource] (main) {} Endpoint 'rbac-service' is using the old format. Please move to the new one: [Endpoint].[url|trust-store-path|trust-store-password|trust-store-type]
This is caused because we're configuring the AccessApi client as:
RBAC_ENDPOINT=${clowder.endpoints.rbac-service:http://localhost:8080}
And it should be:
RBAC_ENDPOINT=${clowder.endpoints.rbac-service.url:http://localhost:8080}
Acceptance Criteria
- We should not see this trace when starting up the swatch contacts service.