[java-oidc-common] branch main updated: Increase thread sleep time to deal with less accure system clocks.
Codeberg
noreply at shibboleth.net
Mon Apr 27 06:27:46 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
https://codeberg.org/Shibboleth/java-oidc-common/commit/47b3d7b01775ad18bbf825c9484958b6b99bfb9f
The following commit(s) were added to refs/heads/main by this push:
new 47b3d7b0 Increase thread sleep time to deal with less accure system clocks.
47b3d7b0 is described below
commit 47b3d7b01775ad18bbf825c9484958b6b99bfb9f
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Mon Apr 27 09:27:32 2026 +0300
Increase thread sleep time to deal with less accure system clocks.
---
.../src/test/java/net/shibboleth/oidc/jwk/RemoteJwkSetCacheTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/oidc-common-crypto-api/src/test/java/net/shibboleth/oidc/jwk/RemoteJwkSetCacheTest.java b/oidc-common-crypto-api/src/test/java/net/shibboleth/oidc/jwk/RemoteJwkSetCacheTest.java
index 4631bde3..0b595c21 100644
--- a/oidc-common-crypto-api/src/test/java/net/shibboleth/oidc/jwk/RemoteJwkSetCacheTest.java
+++ b/oidc-common-crypto-api/src/test/java/net/shibboleth/oidc/jwk/RemoteJwkSetCacheTest.java
@@ -86,7 +86,7 @@ public class RemoteJwkSetCacheTest {
Assert.assertNotNull(jwkSetCache.getStorage().read(RemoteJwkSetCache.CONTEXT_NAME, uri));
jwkSet = jwkSetCache.fetch(new URI(uri), Instant.now().plusSeconds(5));
Assert.assertNotNull(jwkSet);
- Thread.sleep(5001);
+ Thread.sleep(5100);
Assert.assertNull(storageService.read(RemoteJwkSetCache.CONTEXT_NAME, uri));
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list