[jboss-cvs] JBossAS SVN: r109289 - branches/JBoss-AS-6.0.x_ipv6/server/src/main/java/org/jboss/web.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Nov 11 21:04:10 EST 2010
Author: rachmatowicz at jboss.com
Date: 2010-11-11 21:04:10 -0500 (Thu, 11 Nov 2010)
New Revision: 109289
Modified:
branches/JBoss-AS-6.0.x_ipv6/server/src/main/java/org/jboss/web/WebService.java
Log:
Update AS components for IPv6 URL generation - fix (JBAS-8540)
Modified: branches/JBoss-AS-6.0.x_ipv6/server/src/main/java/org/jboss/web/WebService.java
===================================================================
--- branches/JBoss-AS-6.0.x_ipv6/server/src/main/java/org/jboss/web/WebService.java 2010-11-12 00:39:21 UTC (rev 109288)
+++ branches/JBoss-AS-6.0.x_ipv6/server/src/main/java/org/jboss/web/WebService.java 2010-11-12 02:04:10 UTC (rev 109289)
@@ -322,14 +322,14 @@
// Start the WebServer running
server.start();
// JBAS-8540
- log.debug("Started WebServer with address: " + ServerConfigUtil.fixHostnameForURL(server.getBindAddress()) + ":" + getPort());
+ log.debug("Started WebServer with address: " + ServerConfigUtil.fixHostnameForURL(getBindAddress()) + ":" + getPort());
}
protected void stopService() throws Exception
{
server.stop();
// JBAS-8540
- log.debug("Stopped WebServer with address: " + ServerConfigUtil.fixHostnameForURL(server.getBindAddress()) + ":" + getPort());
+ log.debug("Stopped WebServer with address: " + ServerConfigUtil.fixHostnameForURL(getBindAddress()) + ":" + getPort());
}
/**
More information about the jboss-cvs-commits
mailing list