Skip to content

Commit

Permalink
listen on local interface to avoid firewall warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlaverse committed Nov 7, 2024
1 parent f0cba42 commit 159da9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/testhelper_secrets_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (tsm *testSecretsManager) Run(ctx context.Context, serverPort int) {

server := &http.Server{
Handler: handler,
Addr: fmt.Sprintf(":%d", serverPort),
Addr: fmt.Sprintf("127.0.0.1:%d", serverPort),
}

go func() {
Expand Down

0 comments on commit 159da9a

Please sign in to comment.