Skip to content

Commit 2c53bf2

Browse files
authoredAug 17, 2021
fix/jwtSync
fixes spotify#68 per example in related issue; time sync issue can occur when setting issued at to be the current time. This sets the issued at to be 1 minute earlier to avoid this. Tested locally for 2 days with no issues.
1 parent 12f5323 commit 2c53bf2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/main/java/com/spotify/github/v3/clients/JwtTokenIssuer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public class JwtTokenIssuer {
3636

3737
private static final SignatureAlgorithm SIGNATURE_ALGORITHM = SignatureAlgorithm.RS256;
3838
private static final long TOKEN_TTL = 600000;
39+
private static final long TOKEN_ISSUED = 6000;
3940

4041
private final PrivateKey signingKey;
4142

@@ -74,7 +75,7 @@ public String getToken(final Integer appId) {
7475
.setIssuer(String.valueOf(appId))
7576
.signWith(signingKey, SIGNATURE_ALGORITHM)
7677
.setExpiration(new Date(System.currentTimeMillis() + TOKEN_TTL))
77-
.setIssuedAt(new Date())
78+
.setIssuedAt(new Date(System.currentTimeMillis() - TOKEN_ISSUED))
7879
.compact();
7980
}
8081
}

0 commit comments

Comments
 (0)