Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
3728 Weergaven

Hi,


I recently migrate some datas from v8 community to v14 community, as long as custom modules, and, only on v14, odoo sometimes freeze only in a browser tab. If I open a new tab and type localhost:8069, everything works fine, until next freeze.

These freeze take up to 5 minutes to stop. After that, I'm able to reuse odoo on this particular tab like nothing happened.

The most strange part it's that there's no log for this. No log in postgres, no log in odoo, no log in console.

Anyone have a little idea of what's happen ?


I'm running odoo on docker


version: '3'
services:
odoo:
image: odoo:14.0
env_file: .env
depends_on:
- postgres
ports:
- "127.0.0.1:8069:8069"
volumes:
- data:/var/lib/odoo
- ./config:/etc/odoo
- ./addons:/mnt/extra-addons
postgres:
image: postgres:13
env_file: .env
volumes:
- db:/var/lib/postgresql/data/pgdata
pgadmin:
container_name: pgadmin4_container
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com
PGADMIN_DEFAULT_PASSWORD: admin
ports:
- "5050:80"

volumes:
data:
db:
Avatar
Annuleer

Hi, we're facing the same kind of issue with either a docker default installation and a manual installation except we're are running in multi worker and a reverse proxy for longpolling.

Do you have any logs to share? we're on the same boat ;-)

Auteur

Hi,

Unfortunately not. I still having this issue and no progress on it.

Beste antwoord

I found this on similar thread like this on odoo.. check if this works

if you can access the database go to the table called **ir_module_module** its in /schemata/public/tables.
Then simply search the column **name** and if its set to **installed** set it to **uninstalled** (Do not delete the entry!)
then log out of openerp, restart openerp, log in as admin, go to **Settings** >> **Update Modules List** and then **Settings** >> **Apply Scheduled Upgrades**
then be pacient.
depending what modules make trouble you can set also the dependencies on **uninstalled**


Cheers.

Avatar
Annuleer
Beste antwoord

I confirm that this seems to come form messages and particulary queue job : https://twitter.com/FloTho66/status/1554367530462056448?s=20&t=9Q8LOpK89QAB5ATQEP-ucg

Avatar
Annuleer
Auteur Beste antwoord

Most of the time, it happens after a change a tab and come back on this one. 

Could it be because of datas imported from v8 ?

Avatar
Annuleer