[java-identity-provider] branch main updated: IDP-2047 - Get list of locked accounts
Scott Cantor
cantor.2 at osu.edu
Mon Aug 7 16:34:23 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=b79e7dab2d9253ed58324ba9f44b13e011302160
The following commit(s) were added to refs/heads/main by this push:
new b79e7dab2 IDP-2047 - Get list of locked accounts
b79e7dab2 is described below
commit b79e7dab2d9253ed58324ba9f44b13e011302160
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Aug 7 12:33:45 2023 -0400
IDP-2047 - Get list of locked accounts
https://shibboleth.atlassian.net/browse/IDP-2047
Leverage additional parameter in new method.
---
.../shibboleth/idp/authn/impl/StorageBackedAccountLockoutManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/StorageBackedAccountLockoutManager.java b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/StorageBackedAccountLockoutManager.java
index b47abc476..5e76f7905 100644
--- a/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/StorageBackedAccountLockoutManager.java
+++ b/idp-authn-impl/src/main/java/net/shibboleth/idp/authn/impl/StorageBackedAccountLockoutManager.java
@@ -311,7 +311,7 @@ public class StorageBackedAccountLockoutManager extends AbstractIdentifiableInit
if (storageService instanceof EnumeratableStorageService ess) {
final Iterable<String> keys;
try {
- keys = ess.getContextKeys(ensureId());
+ keys = ess.getContextKeys(ensureId(), partialKey);
} catch (final IOException e) {
log.error("Error enumerating lockout storage context", e);
return null;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list