mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 09:32:08 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
11
odoo-bringout-oca-ocb-base/odoo/service/wsgi_server.py
Normal file
11
odoo-bringout-oca-ocb-base/odoo/service/wsgi_server.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue