From 0bd27ea9634ee8ca77e542deea5b1f0f32090c08 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Mon, 5 Aug 2019 00:06:50 -0700 Subject: [PATCH] functional: deprecate "grpc.ErrClientConnClosing" Signed-off-by: Gyuho Lee --- functional/tester/stresser_key.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/functional/tester/stresser_key.go b/functional/tester/stresser_key.go index 7feec4637..c31b5b211 100644 --- a/functional/tester/stresser_key.go +++ b/functional/tester/stresser_key.go @@ -176,9 +176,6 @@ func (s *keyStresser) isRetryableError(err error) bool { case context.Canceled.Error(): // from stresser.Cancel method: return false - case grpc.ErrClientConnClosing.Error(): - // from stresser.Cancel method: - return false } if status.Convert(err).Code() == codes.Unavailable {