Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HH-237863 fix datacenters in service discovery #757

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontik/service_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def cross_dc_or_forced(entry):
upstream, dc = entry
return allow_cross_dc or dc == http_options.datacenter or upstream in forced_cross_dc_upstreams

for upstream, dc in filter(cross_dc_or_forced, itertools.product(options.upstreams, http_options.datacenter)):
for upstream, dc in filter(cross_dc_or_forced, itertools.product(options.upstreams, http_options.datacenters)):
health_cache = HealthCache(
service=upstream,
health_client=self.consul.health,
Expand Down
Loading