You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
351 B
Python

import warnings
import odoo.http
def application(environ, start_response):
warnings.warn("The WSGI application entrypoint moved from "
"odoo.service.wsgi_server.application to odoo.http.root "
"in 15.3.",
DeprecationWarning, stacklevel=1)
return odoo.http.root(environ, start_response)