Shailendher
Shailendher
Currently, the editor triggers an event on every keypress and this results in an multiple ajax calls and also bad user experience. (especially in the online editor) lib.js: `form.on("input", "input,...
StsWebIdentityTokenFileCredentialsProvider not respecting prefetchTime and staleTime configuration
### Describe the bug We were trying to override the `StsWebIdentityTokenFileCredentialsProvider` with a custom configuration as below but it doesn't seem to work. ``` StsWebIdentityTokenFileCredentialsProvider.builder() .asyncCredentialUpdateEnabled(true) .stsClient(StsClient.create()) .prefetchTime(Duration.ofMinutes(35)) .staleTime(Duration.ofMinutes(30)) .build();...