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

geo redirect: Redirect self-node in case of "127.0.0.1" (not MistHost) #1364

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
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 balancer/mist/mist_balancer.go
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ func (b *MistBalancer) MistUtilLoadBalance(ctx context.Context, stream, lat, lon
return "", err
}
// Special case: rewrite our local node to our public node url
if str == b.config.MistHost {
if str == "127.0.0.1" {
str = b.config.NodeName
}
return str, nil
Expand Down
2 changes: 1 addition & 1 deletion balancer/mist/mist_balancer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func start(t *testing.T) (*MistBalancer, *mockMistUtilLoad) {

b := &MistBalancer{
config: &balancer.Config{
MistHost: u.Hostname(),
MistHost: "127.0.0.1",
MistPort: port,
OwnRegion: "fra",
OwnRegionTagAdjust: 1000,
Expand Down
Loading