conn/rpc: Don't bother sending RPCDrop requests to server

This commit is contained in:
Adam Van Ymeren
2025-07-04 14:16:20 -07:00
parent d4239d520a
commit 125be97201
+1 -1
View File
@@ -161,7 +161,7 @@ func New(dialer Dialer, opt Options) *Conn {
RetryInterval: opt.RetryInterval,
MaxRetries: opt.MaxRetries,
Clock: opt.Clock,
DropHandler: conn.dropRPC,
DropHandler: rpc.NopDrop, // was conn.dropRPC, but disabled for faster shutdown
OnError: opt.OnError,
})
}