-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Labels
kind/enhancementNew feature or requestNew feature or request
Milestone
Description
Description
A CredentialsProvider
can be invoked several times over the application's lifetime, not just on startup.
Besides, it can be invoked by an event loop thread.
But it has a synchronous API:
quarkus/extensions/credentials/runtime/src/main/java/io/quarkus/credentials/CredentialsProvider.java
Line 20 in bc4955b
Map<String, String> getCredentials(String credentialsProviderName); |
Given the implementation may read data on disk or from an external system, the API should be asynchronous (and the implementation non blocking).
Implementation ideas
See #31873 (comment)
geoand, holomekc and adampoplawski
Metadata
Metadata
Assignees
Labels
kind/enhancementNew feature or requestNew feature or request