fix pool test

This commit is contained in:
Sergey Cherepanov 2023-06-02 10:34:49 +02:00
parent 41a85f7987
commit 1206071dd6
No known key found for this signature in database
GPG Key ID: 87F8EDE8FBDF637C

View File

@ -217,6 +217,10 @@ type testPeer struct {
closed chan struct{}
}
func (t *testPeer) DoDrpc(ctx context.Context, do func(conn drpc.Conn) error) error {
return fmt.Errorf("not implemented")
}
func (t *testPeer) AcquireDrpcConn(ctx context.Context) (drpc.Conn, error) {
return nil, fmt.Errorf("not implemented")
}