Update git submodules

* Update nova from branch 'master'
  to 1a1a6a042c5b2295c7ab38b0387f3c234a704462
  - Merge "Fix RequestLevelParams persistence handling in RequestSpec"
  - Fix RequestLevelParams persistence handling in RequestSpec
    
    The request_level_params field of the RequestSpec are intentionally not
    persistent and at the same time it is declared as non nullable. The
    current code handling the persistence of this field actually set the
    request_level_params field to None breaking the non nullable invariant
    of the field.
    
    So far this is error is not triggered as the request_level_params field
    was only used lazy loading, which is defaulted the field to a new
    RequestLevelParam object on the RequestSpec object that was never saved after
    such lazy load. A later patch will initialize request_level_params field
    in the RequestSpec.from_components() factory method to handle this
    parameters from Neutron ports and that triggers a failure when the
    RequestSpec is saved.
    
    There are a set of non nullable, non persisted RequestSpec fields that
    are handled individually during create / save. This patch applies the
    same logic to request_level_params as well.
    
    Change-Id: I7d11ef8abb30686f9d125cac0e48369eab839b0f
This commit is contained in:
Zuul 2021-06-04 10:19:35 +00:00 committed by Gerrit Code Review
parent 1d57bb5d85
commit 475d5fea1e
1 changed files with 1 additions and 1 deletions

2
nova

@ -1 +1 @@
Subproject commit cd084aeeb8a2110759912c1b529917a9d3aac555
Subproject commit 1a1a6a042c5b2295c7ab38b0387f3c234a704462