[java-identity-provider] 02/02: IDP-1771 Plugin Installer is not obeying getEnableOnInstall()
Rod Widdowson
rdw at steadingsoftware.com
Tue Mar 9 11:11:44 UTC 2021
This is an automated email from the git hooks/post-receive script.
rdw 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=bba75dfc2feba75d750816634795fded775de4b6
commit bba75dfc2feba75d750816634795fded775de4b6
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Mar 9 11:10:43 2021 +0000
IDP-1771 Plugin Installer is not obeying getEnableOnInstall()
https://issues.shibboleth.net/jira/browse/IDP-1771
---
.../java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
index 84c257493..0688ef66a 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java
@@ -443,7 +443,7 @@ public final class PluginInstaller extends AbstractInitializableComponent implem
String moduleId = null;
try {
- for (final IdPModule module: description.getDisableOnRemoval()) {
+ for (final IdPModule module: description.getEnableOnInstall()) {
moduleId = module.getId();
if (!module.isEnabled(moduleContext)) {
module.enable(moduleContext);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list