[java-identity-provider] branch main updated: IDP-1838 Plugin installer ignores custom HttpClient (e.g. HTTP Proxy)
Rod Widdowson
rdw at steadingsoftware.com
Wed Jul 21 12:50:03 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=3a4ce493820084cc3bd69c8d61685e02e4a156a4
The following commit(s) were added to refs/heads/main by this push:
new 3a4ce4938 IDP-1838 Plugin installer ignores custom HttpClient (e.g. HTTP Proxy)
3a4ce4938 is described below
commit 3a4ce493820084cc3bd69c8d61685e02e4a156a4
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Wed Jul 21 13:43:06 2021 +0100
IDP-1838 Plugin installer ignores custom HttpClient (e.g. HTTP Proxy)
https://issues.shibboleth.net/jira/browse/IDP-1838
Set the http client into the PluginState. So the fact that it is used
for download and for the module work is irrelevant
---
.../java/net/shibboleth/idp/installer/plugin/impl/PluginInstaller.java | 1 +
1 file changed, 1 insertion(+)
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 957a3e087..cb045b5a5 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
@@ -271,6 +271,7 @@ public final class PluginInstaller extends AbstractInitializableComponent implem
setupDescriptionFromDistribution();
if (checkVersion) {
final PluginState state = new PluginState(description, updateOverrideURLs);
+ state.setHttpClient(httpClient);
try {
state.initialize();
} catch (final ComponentInitializationException e) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list