We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f856dd + 64c0b5e commit ddb7776Copy full SHA for ddb7776
2 files changed
haproxy/__init__.py
@@ -1 +1 @@
1
-__version__ = "1.4"
+__version__ = "1.4.2"
haproxy/parser/base_parser.py
@@ -25,7 +25,10 @@ def _merge_services_with_same_vhost(self):
25
del self.details[service_alias]
26
27
for route in self.routes[service_alias]:
28
- self.routes[services_with_same_vhost[service_alias]].append(route)
+ if services_with_same_vhost[service_alias] not in self. routes:
29
+ self.routes[services_with_same_vhost[service_alias]] = [route]
30
+ else:
31
+ self.routes[services_with_same_vhost[service_alias]].append(route)
32
del self.routes[service_alias]
33
34
vhosts = []
0 commit comments