File tree Expand file tree Collapse file tree 4 files changed +357
-119
lines changed
Expand file tree Collapse file tree 4 files changed +357
-119
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const pkg = JSON.parse(
2323) ;
2424
2525const __dirname = dirname ( import . meta. url ) ;
26- const selfsigned = generate ( ) ;
26+ const selfsigned = await generate ( ) ;
2727const { PORT = 3000 , ISSUER = `http://localhost:${ PORT } ` } = process . env ;
2828
2929const ALGS = [ 'PS256' ] ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import configuration from './configuration.js';
1616// TODO: revert after https://gitlab.com/openid/conformance-suite/-/issues/1598 is fixed
1717configuration . jwks . keys = configuration . jwks . keys . filter ( ( jwk ) => jwk . kty !== 'AKP' ) ;
1818
19- const selfsigned = generate ( ) ;
19+ const selfsigned = await generate ( ) ;
2020const { PORT = 3000 , ISSUER = `http://localhost:${ PORT } ` } = process . env ;
2121configuration . findAccount = Account . findAccount ;
2222
You can’t perform that action at this time.
0 commit comments