Merge pull request #21622 from rtriesscheijn/feature/fix-static-key-store
fix(auth-backend): Unknown KeyStore provider: static
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
---
|
||||
|
||||
fix static token issuer not being able to initialize
|
||||
@@ -76,7 +76,7 @@ export class KeyStores {
|
||||
}
|
||||
|
||||
if (provider === 'static') {
|
||||
await StaticKeyStore.fromConfig(config);
|
||||
return await StaticKeyStore.fromConfig(config);
|
||||
}
|
||||
|
||||
throw new Error(`Unknown KeyStore provider: ${provider}`);
|
||||
|
||||
Reference in New Issue
Block a user