[java-idp-integration-tests] 02/03: Remove trailing . from domain name used by browser
Tom Zeller
tzeller at dragonacea.biz
Sat Jul 13 01:34:16 UTC 2024
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=73823376cf1f75ae2e00049084e44a9ac059552c
commit 73823376cf1f75ae2e00049084e44a9ac059552c
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Jul 12 20:32:53 2024 -0500
Remove trailing . from domain name used by browser
The domain name must end with '.' in order to be updated by the Route 53
client, which causes SSL errors when in the URL used by the browser
---
src/test/java/net/shibboleth/idp/integration/tests/Route53Helper.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/net/shibboleth/idp/integration/tests/Route53Helper.java b/src/test/java/net/shibboleth/idp/integration/tests/Route53Helper.java
index 8e0d369..2f5d92b 100644
--- a/src/test/java/net/shibboleth/idp/integration/tests/Route53Helper.java
+++ b/src/test/java/net/shibboleth/idp/integration/tests/Route53Helper.java
@@ -400,7 +400,7 @@ public class Route53Helper extends AbstractInitializableComponent implements Aut
final String fqdn = hostname + "." + domain;
- return fqdn;
+ return fqdn.replaceAll(".$", "");
}
/**
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list