Hi,
Our Confluence Cloud Atlassian Connect app is developed using Spring Boot. On a per request basis it is calling the licensing API to check whether the calling tenant has a valid license:
AtlassianLicense retVal = atlassianHostRestClients.authenticatedAsHostActor()
.getForEntity("/rest/atlassian-connect/1/addons/visio-publisher-for-confluence", AtlassianLicense.class).getBody();
My understanding was that the license was meant to be cached in memory, however it appears that the Spring Boot application call is doing a roundtrip on every call (the elasped time ranges from ~ 150ms to just over 1,000ms ). I would have expected a cached call would be sub millisecond.
Is there any configuration parameter that needs to be set to ensure local caching?
Thanks and regards,
Andrew