[java-identity-provider] branch main updated: IDP-2416 - Capture more output of failed command line invocations
Codeberg
noreply at shibboleth.net
Thu Jan 8 14:49:04 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
https://codeberg.org/Shibboleth/java-identity-provider/commit/5cb679feef2cb22370ada9c5cad0ae975544ddb2
The following commit(s) were added to refs/heads/main by this push:
new 5cb679fee IDP-2416 - Capture more output of failed command line invocations
5cb679fee is described below
commit 5cb679feef2cb22370ada9c5cad0ae975544ddb2
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Jan 8 09:48:50 2026 -0500
IDP-2416 - Capture more output of failed command line invocations
https://shibboleth.atlassian.net/browse/IDP-2416
Remove the status response text, as it's not what was expected.
---
idp-cli/src/main/java/net/shibboleth/idp/cli/CLI.java | 4 ----
.../net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/idp-cli/src/main/java/net/shibboleth/idp/cli/CLI.java b/idp-cli/src/main/java/net/shibboleth/idp/cli/CLI.java
index b21cf4f16..73ac5b961 100644
--- a/idp-cli/src/main/java/net/shibboleth/idp/cli/CLI.java
+++ b/idp-cli/src/main/java/net/shibboleth/idp/cli/CLI.java
@@ -172,10 +172,6 @@ public final class CLI {
System.err.println(errorMessage);
if (conn != null) {
try {
- final String status = conn.getResponseMessage();
- if (status != null) {
- System.err.println(status);
- }
try (final InputStream err = conn.getErrorStream()) {
if (err != null) {
outputStream(err, System.err);
diff --git a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
index 148ed0349..8af2fe04d 100644
--- a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
+++ b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ReloadServiceConfiguration.java
@@ -148,7 +148,7 @@ public class ReloadServiceConfiguration extends AbstractProfileAction {
/**
* Default strategy locates a bean identified with a flow-scope parameter in the web flow application context.
*/
- private class WebFlowApplicationContextLookupStrategy
+ private final class WebFlowApplicationContextLookupStrategy
implements Function<ProfileRequestContext,ReloadableService<?>> {
/** {@inheritDoc} */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list