Merge pull request #15067 from halegreen/fix-comment-typo

client/v3: fix comment typo
This commit is contained in:
Benjamin Wang 2023-01-07 18:02:31 +08:00 committed by GitHub
commit 108cd9abaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ import (
var (
// client-side handling retrying of request failures where data was not written to the wire or
// where server indicates it did not process the data. gRPC default is default is "WaitForReady(false)"
// where server indicates it did not process the data. gRPC default is "WaitForReady(false)"
// but for etcd we default to "WaitForReady(true)" to minimize client request error responses due to
// transient failures.
defaultWaitForReady = grpc.WaitForReady(true)