I have a Spring Boot app running on an Azure Web App instance and it's set up to fetch external configurations from an App Configuration.
I am using the free tier of App Configuration which should be plenty for my needs as my application does not need frequent updates to its configuration properties.
The app is making thousands of calls to the app configuration service and causing me to hit my service quota, so I'm seeing frequent http 429 errors.
I found this article which addresses how to configure a longer timeout for my application properties, but it is .NET specific and doesn't help someone working with the App Configuration SDK for Spring Boot.