Skip to content

Commit

Permalink
go: Fix cross test server
Browse files Browse the repository at this point in the history
Client: go

This was a bug introduced by 91565d4
that broke go's cross-test server, but because other CI issues we didn't
run cross-test so we didn't notice the issue.
  • Loading branch information
fishy committed Aug 14, 2024
1 parent 91565d4 commit 3118b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/go/src/common/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func GetServerParams(
) (thrift.TProcessor, thrift.TServerTransport, thrift.TTransportFactory, thrift.TProtocolFactory, string /* addr */, error) {

var err error
hostPort := fmt.Sprintf("%s:0", host)
hostPort := fmt.Sprintf("%s:%d", host, port)
var cfg *thrift.TConfiguration = nil

var protocolFactory thrift.TProtocolFactory
Expand Down

0 comments on commit 3118b0f

Please sign in to comment.