From b2402af2575f05003496d88c4592518f3f42df6e Mon Sep 17 00:00:00 2001 From: rtriesscheijn Date: Wed, 29 Nov 2023 09:37:48 +0100 Subject: [PATCH] fix: missing return statement in KeyStore.ts Signed-off-by: rtriesscheijn --- plugins/auth-backend/src/identity/KeyStores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/auth-backend/src/identity/KeyStores.ts b/plugins/auth-backend/src/identity/KeyStores.ts index 7242530c57..16f25817a9 100644 --- a/plugins/auth-backend/src/identity/KeyStores.ts +++ b/plugins/auth-backend/src/identity/KeyStores.ts @@ -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}`);