Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
995a037f
Commit
995a037f
authored
13 years ago
by
Vo Minh Thu
Browse files
Options
Downloads
Patches
Plain Diff
[IMP] wsgi: set the config via gunicorn config file.
bzr revid: vmt@openerp.com-20110912102147-yxgv9hpm4fvoxqn6
parent
77fbcb3c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gunicorn.conf.py
+7
-0
7 additions, 0 deletions
gunicorn.conf.py
openerp-server
+3
-3
3 additions, 3 deletions
openerp-server
openerp/wsgi.py
+4
-7
4 additions, 7 deletions
openerp/wsgi.py
with
14 additions
and
10 deletions
gunicorn.conf.py
+
7
−
0
View file @
995a037f
...
...
@@ -8,3 +8,10 @@ workers = 1
on_starting
=
openerp
.
wsgi
.
on_starting
when_ready
=
openerp
.
wsgi
.
when_ready
timeout
=
240
# openerp request-response cycle can be quite long
# Setting openerp.conf.xxx will be better than setting
# openerp.tools.config['xxx']
conf
=
openerp
.
tools
.
config
conf
[
'
addons_path
'
]
=
'
/home/openerp/repos/addons/trunk-xmlrpc
'
conf
[
'
static_http_document_root
'
]
=
'
/tmp
'
#conf['log_level'] = 10 # 10 is DEBUG
This diff is collapsed.
Click to expand it.
openerp-server
+
3
−
3
View file @
995a037f
...
...
@@ -271,9 +271,9 @@ if __name__ == "__main__":
if
info
[
'
wsgi
'
]:
openerp
.
wsgi
.
register_wsgi_handler
(
getattr
(
sys
.
modules
[
m
],
info
[
'
wsgi
'
]))
openerp
.
osv
.
osv
.
start_object_proxy
()
openerp
.
service
.
web_services
.
start_web_services
()
openerp
.
wsgi
.
serve
()
#
openerp.osv.osv.start_object_proxy()
#
openerp.service.web_services.start_web_services()
#
openerp.wsgi.serve()
setup_pid_file
()
...
...
This diff is collapsed.
Click to expand it.
openerp/wsgi.py
+
4
−
7
View file @
995a037f
...
...
@@ -273,11 +273,11 @@ def application(environ, start_response):
# Try all handlers until one returns some result (i.e. not None).
wsgi_handlers
=
[
#
wsgi_xmlrpc,
#
wsgi_jsonrpc,
#
legacy_wsgi_xmlrpc,
wsgi_xmlrpc
,
wsgi_jsonrpc
,
legacy_wsgi_xmlrpc
,
wsgi_webdav
]
#
+ module_handlers
]
+
module_handlers
for
handler
in
wsgi_handlers
:
result
=
handler
(
environ
,
start_response
)
if
result
is
None
:
...
...
@@ -306,9 +306,6 @@ def on_starting(server):
global
arbiter_pid
arbiter_pid
=
os
.
getpid
()
# TODO check if this is true even after replacing the executable
config
=
openerp
.
tools
.
config
config
[
'
addons_path
'
]
=
'
/home/openerp/repos/addons/trunk-xmlrpc
'
# need a config file
config
[
'
static_http_document_root
'
]
=
'
/tmp
'
#config['log_level'] = 10 # debug
#openerp.tools.cache = kill_workers_cache
openerp
.
netsvc
.
init_logger
()
openerp
.
osv
.
osv
.
start_object_proxy
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment