-
Hi, I see this in the odoo logs.
I read that is related with the greenlet/python version https://stackoverflow.com/questions/64105616/greenlet-runtime-error-and-deployed-app-in-docker-keeps-booting-all-the-workers
It is important?, is this the right channel for this question? I do not know if is for this reason but I am suffering logouts and reentries constantly.
🙏 help ... . Odoo version: 14 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I opened an issue at the OCB repository. The problem seems to be that the requirements file in OCB is not updated with gevent version for python > 3.8 and I was aggregating the OCB repository. I removed OCB and I only download from Odoo with git-aggregator but it still installing the wrong gevent version When I checked the what is happening, why it is installing the wrong version of gevent, even if I have it correct now? I did Any ideas of why is still using this version?? is there other place to specify the version than in the requirements? |
Beta Was this translation helpful? Give feedback.
I opened an issue at the OCB repository.
The problem seems to be that the requirements file in OCB is not updated with gevent version for python > 3.8 and I was aggregating the OCB repository.
OCA/OCB#995
I removed OCB and I only download from Odoo with git-aggregator but it still installing the wrong gevent version
Requirement already satisfied: gevent in /usr/local/lib/python3.8/site-packages (from odoo==14.0) (1.5.0)
When I checked the
requirements.txt
inside the container incustom/src/odoo/
, it is OK with the correctgevent version
for python > 3.8.what is happening, why it is installing the wrong version of gevent, even if I have it correct now? I did
docker system prune -a
to remo…