[java-identity-provider] branch master updated: Do not add whitespace after the '=' when writing properties

Tom Zeller tzeller at dragonacea.biz
Mon Jul 16 12:49:23 EDT 2018


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=0c74601999269a7f7c55b7819fa6aab0c8fa70a9

The following commit(s) were added to refs/heads/master by this push:
       new  0c74601   Do not add whitespace after the '=' when writing properties
0c74601 is described below

commit 0c74601999269a7f7c55b7819fa6aab0c8fa70a9
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Jul 16 11:47:42 2018 -0500

    Do not add whitespace after the '=' when writing properties
    
    Jetty may not be able to read keystore path properties with leading
    whitespace, for example " ../credentials/idp-userfacing.p12".
---
 .../java/net/shibboleth/idp/installer/impl/PropertiesWithComments.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/PropertiesWithComments.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/PropertiesWithComments.java
index 4f46ff0..87e17c2 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/PropertiesWithComments.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/PropertiesWithComments.java
@@ -273,7 +273,7 @@ public class PropertiesWithComments {
                 writer.write(value);
             } else {
                 writer.write(property);
-                writer.write("= ");
+                writer.write("=");
                 writer.write(value);
             }
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list