- Mailing Lists
- Contributors
- Migration v14 -> v16
Archives
- By thread 1419
-
By date
- August 2019 59
- September 2019 118
- October 2019 165
- November 2019 97
- December 2019 35
- January 2020 58
- February 2020 204
- March 2020 121
- April 2020 172
- May 2020 50
- June 2020 158
- July 2020 85
- August 2020 94
- September 2020 193
- October 2020 277
- November 2020 100
- December 2020 159
- January 2021 38
- February 2021 87
- March 2021 146
- April 2021 73
- May 2021 90
- June 2021 86
- July 2021 123
- August 2021 50
- September 2021 68
- October 2021 66
- November 2021 74
- December 2021 75
- January 2022 98
- February 2022 77
- March 2022 68
- April 2022 31
- May 2022 59
- June 2022 87
- July 2022 141
- August 2022 38
- September 2022 73
- October 2022 152
- November 2022 39
- December 2022 50
- January 2023 93
- February 2023 49
- March 2023 106
- April 2023 47
- May 2023 69
- June 2023 92
- July 2023 64
- August 2023 103
- September 2023 91
- October 2023 101
- November 2023 94
- December 2023 46
- January 2024 75
- February 2024 79
- March 2024 104
- April 2024 63
- May 2024 40
- June 2024 160
- July 2024 80
- August 2024 70
- September 2024 62
- October 2024 121
- November 2024 117
- December 2024 89
- January 2025 59
- February 2025 104
- March 2025 96
- April 2025 107
- May 2025 52
- June 2025 72
- July 2025 60
- August 2025 81
- September 2025 124
- October 2025 63
- November 2025 22
Contributors
Migration v14 -> v16
i am struggling with a migration.
From 14 to 15 it went very well and smooth. After fixing some minor issues, updating Odoo 15 with -u all is performed without any issues left.
After migrating to V16, the database is accessible without any problems. I can update all installed modules one by one by updating them from the app module.
Anyway… When i run the update of all modules with -u all in v16 i am getting a keyerror with the dbname:
2024-04-20 10:31:48,171 44842 INFO DBNAME odoo.addons.base.models.ir_module: module website: loading translation file de for language de_DE
2024-04-20 10:31:49,257 44842 WARNING DBNAME odoo.modules.loading: Transient module states were reset
2024-04-20 10:31:49,258 44842 ERROR DBNAME odoo.modules.registry: Failed to load registry
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 64, in __new__
return cls.registries[db_name]
File "<decorator-gen-8>", line 2, in __getitem__
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/lru.py", line 34, in __getitem__
a = self.d[obj]
KeyError: 'DBNAME'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 90, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 484, in load_modules
processed_modules += load_marked_modules(cr, graph,
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 372, in load_marked_modules
loaded, processed = load_module_graph(
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 304, in load_module_graph
module.write({'state': 'installed', 'latest_version': ver})
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_module_module.py", line 79, in write
if request and request.db and request.context.get('apply_new_theme'):
File "/Users/user/PycharmProjects/odoo/v16/odoo16env/lib/python3.8/site-packages/werkzeug/local.py", line 348, in __getattr__
return getattr(self._get_current_object(), name)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/http.py", line 1266, in context
return self.env.context
AttributeError: 'NoneType' object has no attribute 'context'
I tried it on 2 different machines to make sure, that the enviroment is not the culprit.
Before digging deeper and deeper, i am trying to ask you if somebody knows what to do now!
Any hint is highly appreciated.
All the best
Nils
|
|
Nils Coenen Inhaber Phone: +49 (0)4298-4667492 |
|
NICO SOLUTIONS – ENGINEERING & IT |
Confidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
by Nils Coenen - 12:56 - 20 Apr 2024
Follow-Ups
-
Re: Migration v14 -> v16
Hello Nils,I've experienced the exact same issue before. Honestly I never did up before besides the fact that website broke the entire running instance with whichever theme you choose every time you restar the service.Although I found out that if you create a empty database and move onto it before entering the main database, the error solves ✨ magically ✨.It's a pretty clumsy solution and if you are working with stuff like an IoT Box it won't work for you but for almost any use cases it does. I would love to find a better and real solution anyway.Best regards,José Vizcaya.On Sat, Apr 20, 2024, 06:57 Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT <notifications@odoo-community.org> wrote:i am struggling with a migration.
From 14 to 15 it went very well and smooth. After fixing some minor issues, updating Odoo 15 with -u all is performed without any issues left.
After migrating to V16, the database is accessible without any problems. I can update all installed modules one by one by updating them from the app module.
Anyway… When i run the update of all modules with -u all in v16 i am getting a keyerror with the dbname:
2024-04-20 10:31:48,171 44842 INFO DBNAME odoo.addons.base.models.ir_module: module website: loading translation file de for language de_DE
2024-04-20 10:31:49,257 44842 WARNING DBNAME odoo.modules.loading: Transient module states were reset
2024-04-20 10:31:49,258 44842 ERROR DBNAME odoo.modules.registry: Failed to load registry
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 64, in __new__
return cls.registries[db_name]
File "<decorator-gen-8>", line 2, in __getitem__
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/lru.py", line 34, in __getitem__
a = self.d[obj]
KeyError: 'DBNAME'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 90, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 484, in load_modules
processed_modules += load_marked_modules(cr, graph,
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 372, in load_marked_modules
loaded, processed = load_module_graph(
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 304, in load_module_graph
module.write({'state': 'installed', 'latest_version': ver})
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_module_module.py", line 79, in write
if request and request.db and request.context.get('apply_new_theme'):
File "/Users/user/PycharmProjects/odoo/v16/odoo16env/lib/python3.8/site-packages/werkzeug/local.py", line 348, in __getattr__
return getattr(self._get_current_object(), name)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/http.py", line 1266, in context
return self.env.context
AttributeError: 'NoneType' object has no attribute 'context'
I tried it on 2 different machines to make sure, that the enviroment is not the culprit.
Before digging deeper and deeper, i am trying to ask you if somebody knows what to do now!
Any hint is highly appreciated.
All the best
Nils
Nils Coenen
Inhaber
Phone: +49 (0)4298-4667492
NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 LilienthalConfidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by josevizcaya0616 - 05:05 - 20 Apr 2024 -
AW: Migration v14 -> v16
Hey Luis,
that was the problem as stated in the previous reply.
Thank you!
Nils
Nils Coenen
Inhaber
Phone: +49 (0)4298-4667492
NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 LilienthalConfidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
Von: Luis Omar López García <notifications@odoo-community.org>
Gesendet: Samstag, 20. April 2024 16:48
An: Contributors <contributors@odoo-community.org>
Betreff: Re: Migration v14 -> v16ACHTUNG! Diese E-Mail stammt von außerhalb der Organisation. Klicken Sie nicht auf Links und öffnen Sie keine Anhänge, es sei denn, Sie kennen den Absender und wissen, dass der Inhalt sicher ist.
Hello Nill,
Have you tried adding -d <DBNAME> in the command line?
Cheers
El sáb, 20 abr 2024 a las 6:57, Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT (<notifications@odoo-community.org>) escribió:
i am struggling with a migration.
From 14 to 15 it went very well and smooth. After fixing some minor issues, updating Odoo 15 with -u all is performed without any issues left.
After migrating to V16, the database is accessible without any problems. I can update all installed modules one by one by updating them from the app module.
Anyway… When i run the update of all modules with -u all in v16 i am getting a keyerror with the dbname:
2024-04-20 10:31:48,171 44842 INFO DBNAME odoo.addons.base.models.ir_module: module website: loading translation file de for language de_DE
2024-04-20 10:31:49,257 44842 WARNING DBNAME odoo.modules.loading: Transient module states were reset
2024-04-20 10:31:49,258 44842 ERROR DBNAME odoo.modules.registry: Failed to load registry
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 64, in __new__
return cls.registries[db_name]
File "<decorator-gen-8>", line 2, in __getitem__
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/lru.py", line 34, in __getitem__
a = self.d[obj]
KeyError: 'DBNAME'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 90, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 484, in load_modules
processed_modules += load_marked_modules(cr, graph,
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 372, in load_marked_modules
loaded, processed = load_module_graph(
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 304, in load_module_graph
module.write({'state': 'installed', 'latest_version': ver})
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_module_module.py", line 79, in write
if request and request.db and request.context.get('apply_new_theme'):
File "/Users/user/PycharmProjects/odoo/v16/odoo16env/lib/python3.8/site-packages/werkzeug/local.py", line 348, in __getattr__
return getattr(self._get_current_object(), name)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/http.py", line 1266, in context
return self.env.context
AttributeError: 'NoneType' object has no attribute 'context'
I tried it on 2 different machines to make sure, that the enviroment is not the culprit.
Before digging deeper and deeper, i am trying to ask you if somebody knows what to do now!
Any hint is highly appreciated.
All the best
Nils
Nils Coenen
Inhaber
Phone: +49 (0)4298-4667492
NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 LilienthalConfidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Luis Omar López García
+56954706938
Skype: luisomar3@hotmail.com
Github: https://github.com/luisomar3
LinkedIn: Luis Omar Lopez
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Nils Coenen - 05:00 - 20 Apr 2024 -
AW: Migration v14 -> v16
Hey Holger,
many thanks!
This helped to find the problem.
Even if the db was defined in the conf file i add with -c, i had to add -d DBNAME explicitly to the script execution and everything is fine.
I am not sure why this did not appear before, but thanks to your hint i was able to track the problem!
Cheerio
Nils
Nils Coenen
Inhaber
Phone: +49 (0)4298-4667492
NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 LilienthalConfidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
Von: Holger Brunn <notifications@odoo-community.org>
Gesendet: Samstag, 20. April 2024 15:17
An: Contributors <contributors@odoo-community.org>
Betreff: Re: Migration v14 -> v16ACHTUNG! Diese E-Mail stammt von außerhalb der Organisation. Klicken Sie nicht auf Links und öffnen Sie keine Anhänge, es sei denn, Sie kennen den Absender und wissen, dass der Inhalt sicher ist.
the first exception is expected, the second is the one that's your problem. > "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_ > module_module.py", line 79, in write >
if request and request.db and request.context.get('apply_new_theme'): I'd set a breakpoint here and inspect the value of request. I suspect a Request object without an environment set, while it should be unbound at this point. Then you need to backtraceto see where this is set. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Nils Coenen - 05:00 - 20 Apr 2024 -
Re: Migration v14 -> v16
Hello Nill,Have you tried adding -d <DBNAME> in the command line?CheersEl sáb, 20 abr 2024 a las 6:57, Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT (<notifications@odoo-community.org>) escribió:i am struggling with a migration.
From 14 to 15 it went very well and smooth. After fixing some minor issues, updating Odoo 15 with -u all is performed without any issues left.
After migrating to V16, the database is accessible without any problems. I can update all installed modules one by one by updating them from the app module.
Anyway… When i run the update of all modules with -u all in v16 i am getting a keyerror with the dbname:
2024-04-20 10:31:48,171 44842 INFO DBNAME odoo.addons.base.models.ir_module: module website: loading translation file de for language de_DE
2024-04-20 10:31:49,257 44842 WARNING DBNAME odoo.modules.loading: Transient module states were reset
2024-04-20 10:31:49,258 44842 ERROR DBNAME odoo.modules.registry: Failed to load registry
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 64, in __new__
return cls.registries[db_name]
File "<decorator-gen-8>", line 2, in __getitem__
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/tools/lru.py", line 34, in __getitem__
a = self.d[obj]
KeyError: 'DBNAME'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/registry.py", line 90, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 484, in load_modules
processed_modules += load_marked_modules(cr, graph,
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 372, in load_marked_modules
loaded, processed = load_module_graph(
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/modules/loading.py", line 304, in load_module_graph
module.write({'state': 'installed', 'latest_version': ver})
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_module_module.py", line 79, in write
if request and request.db and request.context.get('apply_new_theme'):
File "/Users/user/PycharmProjects/odoo/v16/odoo16env/lib/python3.8/site-packages/werkzeug/local.py", line 348, in __getattr__
return getattr(self._get_current_object(), name)
File "/Users/user/PycharmProjects/odoo/v16/odoo-server/odoo/http.py", line 1266, in context
return self.env.context
AttributeError: 'NoneType' object has no attribute 'context'
I tried it on 2 different machines to make sure, that the enviroment is not the culprit.
Before digging deeper and deeper, i am trying to ask you if somebody knows what to do now!
Any hint is highly appreciated.
All the best
Nils
Nils Coenen
Inhaber
Phone: +49 (0)4298-4667492
NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 LilienthalConfidentiality Note: This email may contain confidential and/or private information. If you received this email in error please delete and notify sender.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Luis Omar López García+56954706938Skype: luisomar3@hotmail.comGithub: https://github.com/luisomar3LinkedIn: Luis Omar Lopez
by luisomar242 - 04:46 - 20 Apr 2024 -
Re: Migration v14 -> v16
the first exception is expected, the second is the one that's your problem. > "/Users/user/PycharmProjects/odoo/v16/odoo-server/addons/website/models/ir_ > module_module.py", line 79, in write > if request and request.db and request.context.get('apply_new_theme'): I'd set a breakpoint here and inspect the value of request. I suspect a Request object without an environment set, while it should be unbound at this point. Then you need to backtrace to see where this is set. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
by Holger Brunn - 03:16 - 20 Apr 2024