Skip to content
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.

Commit

Permalink
Don't require daemon config in arquillian.xml [SWARM-138]
Browse files Browse the repository at this point in the history
And fall back to defaults if no settings are provided.
  • Loading branch information
tobias committed Dec 4, 2015
1 parent 629ae22 commit 763d2b7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -36,10 +36,10 @@ public class DaemonContainerConfigurationBase implements ContainerConfiguration
@Override
public void validate() throws ConfigurationException {
if (host == null || host.length() == 0) {
throw new ConfigurationException("host must be specified");
this.host = "localhost";
}
if (port == null || port.length() == 0) {
throw new ConfigurationException("port must be specified");
this.port = "12345";
}
}

Expand Down

0 comments on commit 763d2b7

Please sign in to comment.