summaryrefslogtreecommitdiff
path: root/scripts/Controller.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-01-20 16:52:33 +0100
committerBenoit Foucher <benoit@zeroc.com>2017-01-20 16:52:33 +0100
commit10d9e3aae20e55d9824b632e77d8f14fd67b122f (patch)
treee38f0c77e423d9c1a8a5faf4abfccdfa63a905b3 /scripts/Controller.py
parentjava:UserException metadata for both local and remote operations (diff)
downloadice-10d9e3aae20e55d9824b632e77d8f14fd67b122f.tar.bz2
ice-10d9e3aae20e55d9824b632e77d8f14fd67b122f.tar.xz
ice-10d9e3aae20e55d9824b632e77d8f14fd67b122f.zip
Fixed ICE-6708 - the UDP transport now join the multicast group on all interfaces by default
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-xscripts/Controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py
index 7eee0574c1f..85934176d0d 100755
--- a/scripts/Controller.py
+++ b/scripts/Controller.py
@@ -45,7 +45,7 @@ class ControllerDriver(Driver):
parseOptions(self, options, { "clean" : "clean" })
if not self.endpoints:
- self.endpoints = "tcp -h " + (self.interface or "127.0.0.1")
+ self.endpoints = ("tcp -h " + self.interface) if self.interface else "tcp"
def run(self, mappings, testSuiteIds):