Skip to content

Commit

Permalink
FELIX-5994: resolve endpoint properties if host is 0.0.0.0
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1848112 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
karlpauls committed Dec 3, 2018
1 parent 9678534 commit f4892ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ private void addEndpointProperties(final Hashtable<String, Object> props, Object
{
final Connector connector = connectors[i];

if (getServerConnector(connector).getHost() == null)
if (getServerConnector(connector).getHost() == null || "0.0.0.0".equals(getServerConnector(connector).getHost()))
{
try
{
Expand Down

0 comments on commit f4892ed

Please sign in to comment.