Skip to content

Commit

Permalink
hacky pushy
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkolasg committed May 10, 2019
1 parent 2f82385 commit c4c1f70
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions net/client_grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@ type grpcClient struct {
// ExternalClient using gRPC connections
func NewGrpcClient(opts ...grpc.DialOption) *grpcClient {
return &grpcClient{
opts: opts,
conns: make(map[string]*grpc.ClientConn),
manager: NewCertManager(),
timeout: 10 * time.Second,
opts: opts,
conns: make(map[string]*grpc.ClientConn),
manager: NewCertManager(),
//timeout: 10 * time.Second,
timeout: 1 * time.Minute,
failFast: grpc.FailFast(true),
}
}
Expand Down

0 comments on commit c4c1f70

Please sign in to comment.