Skip to content

Commit

Permalink
Fix firewall warning for CLI (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
vancexu authored and samarabbas committed Jun 11, 2018
1 parent b7d4dea commit e3b6cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/cli/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (b *WorkflowClientBuilder) build() error {
}

ch, err := tchannel.NewChannelTransport(
tchannel.ServiceName(_cadenceClientName))
tchannel.ServiceName(_cadenceClientName), tchannel.ListenAddr("127.0.0.1:0"))
if err != nil {
b.logger.Fatal("Failed to create transport channel", zap.Error(err))
}
Expand Down

0 comments on commit e3b6cef

Please sign in to comment.