Skip to Content

Contributors

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

 

Ein Bild, das Text, Computer, Person, Menschliches Gesicht enthält.

Automatisch generierte Beschreibung

Nils Coenen

Inhaber

Phone: +49 (0)4298-4667492 

Web: www.nico-solutions.de  

Email: nils.coenen@nico-solutions.de

         

NICO SOLUTIONS – ENGINEERING & IT
Dr.-Ruckert-Str. 1G, DE-28865 Lilienthal

Confidentiality 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 -> v16

 

ACHTUNG! 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 backtrace

 to see where this is set. -- Your partner for the hard Odoo problems https://hunki-enterprises.com


by Nils Coenen - 05:00 - 20 Apr 2024

Reference

  • Migration v14 -> v16

    Dear Contributors,

    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

     

    Ein Bild, das Text, Computer, Person, Menschliches Gesicht enthält.

Automatisch generierte Beschreibung

    Nils Coenen

    Inhaber

    Phone: +49 (0)4298-4667492 

    Web: www.nico-solutions.de  

    Email: nils.coenen@nico-solutions.de

    signature_1178921532   signature_2579273939   signature_2533642704   signature_3939821989

    NICO SOLUTIONS – ENGINEERING & IT
    Dr.-Ruckert-Str. 1G, DE-28865 Lilienthal

    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