Skip to content

Commit 9cd35a8

Browse files
committed
Fix getAccessTokenAsJwt
1 parent 4550b76 commit 9cd35a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/eu/openanalytics/containerproxy/auth/impl/OpenIDAuthenticationBackend.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ public String getAccessToken() {
383383

384384
public Jwt getAccessTokenAsJwt() {
385385
try {
386-
return accessTokenDecoder.decode("abc");
386+
return accessTokenDecoder.decode(getAccessToken());
387387
} catch (JwtException e) {
388388
log.warn("Failed to decode access token as JWT", e);
389389
throw e;

0 commit comments

Comments
 (0)