Skip to content

Commit

Permalink
Merge branch 'main' into rafal/revert-removal-of-mist-triggers-setup
Browse files Browse the repository at this point in the history
  • Loading branch information
leszko authored Aug 22, 2024
2 parents de17642 + 79b04ee commit 34186da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 34186da

Please sign in to comment.