8
votes

I having some error in the server that is

File "/home/odoo/odoo/odoo_8_test/addons/bus/bus.py", line 188, in poll    
raise Exception("bus.Bus unavailable") Exception: bus.Bus unavailable

Because of this I lost the context value and some variable value during the execution of program on server.

1

1 Answers

0
votes

In your nginx.conf file, add below lines:

location /longpolling {
proxy_pass http://127.0.0.1:8072;
}
location / {
    proxy_pass http://127.0.0.1:8069;
}