This question has been flagged
2 Replies
2218 Views

Hello,

we have installed a new instance of Odoo 16 on our linux server for testing.

What is wrong with discuss app ? 

If I send a message to my second account, the message will be delivered in like 10minuts if I dont refresh my page, if I refresh, it magically appears

Also the notification doesnt jump up at all.

Video or audio calls are having yellow exclamation mark at the other persons profile picture...

Whats wrong here ? 


Thank you

Avatar
Discard

Same Problem.. Did you found already a Solution?

Best Answer

Hello,

I experiences this behavior after Odoo 16 ugrade, because I did not yet configure the /websocket location (I still had obsolete /longpolling nginx configuration). 

After updating the configuration according to https://www.odoo.com/documentation/16.0/administration/install/deploy.html it worked like charm.

location /websocket {
    proxy_pass http://odoochat;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
  }
Avatar
Discard
Best Answer

Hi there, 

Same behavior using odoo 17.

I've already added the /websocket directives described above but the discuss app still not real time for notifications and video chat never work

Avatar
Discard