Skip to content

Commit

Permalink
Fix hardcoded target in get_executions. (#8180)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimberezniker authored Jan 14, 2025
1 parent 3001823 commit e6ca607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/tools/get_executions/get_executions.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func run() error {
if *apiKey != "" {
ctx = metadata.AppendToOutgoingContext(ctx, "x-buildbuddy-api-key", *apiKey)
}
conn, err := grpc_client.DialSimpleWithoutPooling("remote.buildbuddy.io")
conn, err := grpc_client.DialSimpleWithoutPooling(*target)
if err != nil {
return fmt.Errorf("dial %s: %w", *target, err)
}
Expand Down

0 comments on commit e6ca607

Please sign in to comment.