8

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.

halfer
  • 19,824
  • 17
  • 99
  • 186
Jeenit khatri
  • 318
  • 4
  • 19

2 Answers2

0

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;
}
KbiR
  • 4,047
  • 6
  • 37
  • 103
0

in your odoo.conf file please specify these settings

proxy_mode = True
limit_memory_hard = 2684354560
limit_memory_soft = 2147483648
limit_request = 8192
limit_time_cpu = 60
limit_time_real = 120
workers = 2
HERAwais
  • 357
  • 5
  • 21