Merge pull request #2663 from crosbymichael/publish

Reduce publish connection timeout
This commit is contained in:
Derek McGowan 2018-09-19 10:51:55 -07:00 committed by GitHub
commit 5600adc86d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@ func connect(address string, d func(string, time.Duration) (net.Conn, error)) (*
grpc.FailOnNonTempDialError(true),
grpc.WithBackoffMaxDelay(3 * time.Second),
}
ctx, cancel := gocontext.WithTimeout(gocontext.Background(), 60*time.Second)
ctx, cancel := gocontext.WithTimeout(gocontext.Background(), 2*time.Second)
defer cancel()
conn, err := grpc.DialContext(ctx, dialer.DialAddress(address), gopts...)
if err != nil {