chibenwa commented on code in PR #2816:
URL: https://github.com/apache/james-project/pull/2816#discussion_r2362383847


##########
server/protocols/jwt/src/main/java/org/apache/james/jwt/DefaultCheckTokenClient.java:
##########
@@ -42,11 +43,15 @@
 public class DefaultCheckTokenClient implements CheckTokenClient {
 
     public static final String TOKEN_ATTRIBUTE = "token";
+    public static final int PENDING_ACQUIRE_MAX = 
Optional.ofNullable(System.getProperty("james.oidc.client.pending.acquire.max"))
+        .map(Integer::valueOf)
+        .orElse(10000);

Review Comment:
   ```suggestion
           .orElse(512);
   ```
   
   Maybe?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to