diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-11-23 10:32:57 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-11-23 10:32:57 +0100 |
commit | a0d581095e0b4a2019a7f7d15fceaf4a9c46fe05 (patch) | |
tree | fe0badcf63f059303abaf9fbaad7b7ef024e3695 /scripts/Util.py | |
parent | Fixed Xamarin iOS test failure with IPv6 (diff) | |
download | ice-a0d581095e0b4a2019a7f7d15fceaf4a9c46fe05.tar.bz2 ice-a0d581095e0b4a2019a7f7d15fceaf4a9c46fe05.tar.xz ice-a0d581095e0b4a2019a7f7d15fceaf4a9c46fe05.zip |
Fix quote issue from previous IPv6 testing fix
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 6d0406ec778..8bb4334b26b 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -714,7 +714,7 @@ class Mapping(object): if self.ipv6: props["Ice.PreferIPv6Address"] = True if self.mx: - props["Ice.Admin.Endpoints"] = "tcp -h \"::1\"" if self.ipv6 else "tcp -h 127.0.0.1" + props["Ice.Admin.Endpoints"] = "tcp -h \\\"::1\\\"" if self.ipv6 else "tcp -h 127.0.0.1" props["Ice.Admin.InstanceName"] = "Server" if isinstance(process, Server) else "Client" props["IceMX.Metrics.Debug.GroupBy"] ="id" props["IceMX.Metrics.Parent.GroupBy"] = "parent" |