mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
client: fix "ineffassign" warning
Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
parent
9c9d846959
commit
ebfba72715
@ -483,8 +483,14 @@ func (f fakeCancelContext) Done() <-chan struct{} {
|
||||
func (f fakeCancelContext) Err() error { return fakeCancelContextError }
|
||||
func (f fakeCancelContext) Value(key interface{}) interface{} { return 1 }
|
||||
|
||||
func withTimeout(parent context.Context, timeout time.Duration) (context.Context, context.CancelFunc) {
|
||||
return parent, func() { parent = nil }
|
||||
func withTimeout(parent context.Context, timeout time.Duration) (
|
||||
ctx context.Context,
|
||||
cancel context.CancelFunc) {
|
||||
ctx = parent
|
||||
cancel = func() {
|
||||
ctx = nil
|
||||
}
|
||||
return ctx, cancel
|
||||
}
|
||||
|
||||
func TestHTTPClusterClientDoCanceledContext(t *testing.T) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user