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
1
In your nginx.conf file, add below lines:
在您的nginx.conf文件中,添加以下行:
location /longpolling {
proxy_pass http://127.0.0.1:8072;
}
location / {
proxy_pass http://127.0.0.1:8069;
}
#1
1
In your nginx.conf file, add below lines:
在您的nginx.conf文件中,添加以下行:
location /longpolling {
proxy_pass http://127.0.0.1:8072;
}
location / {
proxy_pass http://127.0.0.1:8069;
}