From c23ef9a9b6e2c7a43b3f98bdbd85e6c7b2b0ba74 Mon Sep 17 00:00:00 2001
From: Laurent Smet <las@openerp.com>
Date: Mon, 9 Oct 2017 10:03:22 +0200
Subject: [PATCH] [FIX] remove 'report' from rpc dispatcher

This feature no longer exists since 3425752eaca236c1e4b4d616aa49b3faa6cfd957

reported on github issue 19887
---
 odoo/http.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/odoo/http.py b/odoo/http.py
index 4b69a1553869..3da0379e551b 100644
--- a/odoo/http.py
+++ b/odoo/http.py
@@ -112,8 +112,6 @@ def dispatch_rpc(service_name, method, params):
             dispatch = odoo.service.db.dispatch
         elif service_name == 'object':
             dispatch = odoo.service.model.dispatch
-        elif service_name == 'report':
-            dispatch = odoo.service.report.dispatch
         result = dispatch(method, params)
 
         if rpc_request_flag or rpc_response_flag:
-- 
GitLab