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.
1 parent 2530556 commit 44abb6bCopy full SHA for 44abb6b
1 file changed
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