Update git submodules

* Update nova from branch 'master'
  to fa449781412de7af23417e3eec3e556c50fc9cd5
  - Merge "Fix notification object hashes for python 3.12"
  - Fix notification object hashes for python 3.12
    
    Python 3.12 changes the repr() syntax for the OrderedDict object,
    which causes us to calculate different hashes for the notification
    objects across the version gap. The get_extra_data() function wraps
    a dict in OrderedDict after sorting the elements of the original dict,
    but that is not entirely necessary. The sorted() list of dict.items()
    is a perfectly reasonable representation of the things it is capturing,
    so we can just eliminate the use of OrderedDict there and thus end
    up calculating the same hashes on <3.12 and >3.12.
    
    NOTE: This changes a bunch of the hashes of notification objects
    without bumping or changing versions. This is expected purely because
    we are changing the hashing method, and thus this is not a violation
    or upgrade concern.
    
    Change-Id: I242150138deed7fe74b13d9c44b333293cd24ffa
This commit is contained in:
Zuul 2024-05-16 14:26:19 +00:00 committed by Gerrit Code Review
parent b9388e3a97
commit bd11fc0d20
1 changed files with 1 additions and 1 deletions

2
nova

@ -1 +1 @@
Subproject commit bfd35258635dd80840e0768edbeb85cf87e36727
Subproject commit fa449781412de7af23417e3eec3e556c50fc9cd5