You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maxResults > 25 triggers an Error in the Azure KeyVaultClient class:
UnhandledPromiseRejectionWarning: Error: "maxresults"shouldsatisfytheconstraint-"InclusiveMaximum": 25atKeyVaultClient._getSecrets(/Users/julien/dev/uno-serverless/packages/uno-serverless-azure/node_modules/azure-keyvault/lib/keyVaultClient.js:4214:15)atPromise(/Users/julien/dev/uno-serverless/packages/uno-serverless-azure/node_modules/azure-keyvault/lib/keyVaultClient.js:18388:14)atnewPromise(<anonymous>)
at KeyVaultClient.getSecrets (/Users/julien/dev/uno-serverless/packages/uno-serverless-azure/node_modules/azure-keyvault/lib/keyVaultClient.js:18387:14)
at KeyVaultConfigService.getParameters (/Users/julien/dev/uno-serverless/packages/uno-serverless-azure/src/services/config.ts:88:24)
at <anonymous>
at process._tickDomainCallback (internal/process/next_tick.js:228:7)
However, the class needs to be fixed to properly handle nextLinks.
setting maxResults, see below, will later fail when trying to retrieve a config parameter
new KeyVaultConfigService({
keyVaultUrl: process.env.KEYVAULT!,
maxResults: 40,
});
The text was updated successfully, but these errors were encountered: