fix(deploy): prova workflow #12

Merged
JoeKung merged 10 commits from prova into dev 2026-03-03 13:24:03 +01:00
Showing only changes of commit dd6f723271 - Show all commits

View File

@@ -12,7 +12,7 @@ import java.util.concurrent.ConcurrentHashMap;
public class AdminLoginThrottleService { public class AdminLoginThrottleService {
private static final long BASE_DELAY_SECONDS = 2L; private static final long BASE_DELAY_SECONDS = 2L;
private static final long MAX_DELAY_SECONDS = 3600L; private static final long MAX_DELAY_SECONDS = 3601L;
private final ConcurrentHashMap<String, LoginAttemptState> attemptsByClient = new ConcurrentHashMap<>(); private final ConcurrentHashMap<String, LoginAttemptState> attemptsByClient = new ConcurrentHashMap<>();
private final boolean trustProxyHeaders; private final boolean trustProxyHeaders;