Update git submodules

* Update masakari from branch 'master'
  - Fix exception notification with no trace
    
    The Exception notification code calls inspect.trace(), which returns an
    empty list if called outside of an except clause. The returned list is
    then indexed, causing an IndexError. In fact, every use of this
    exception in the engine is from outside of an except clause.
    
    This can affect notification processing, causing notifications to get
    stuck in a running state, requiring manual DB deletion.
    
    This change addresses the issue by checking whether the list returned by
    inspect.trace() is empty.
    
    A more complete solution would involve checking every call path to the
    exception notification, and ensuring that it is made from an except
    clause.
    
    Change-Id: I01af664d53db20041ac7306d2bca63254ffc9ede
    Partial-Bug: #1889765
This commit is contained in:
Mark Goddard 2020-07-31 12:26:16 +01:00 committed by Gerrit Code Review
parent 46e943895c
commit 7cf39eb26c
1 changed files with 1 additions and 1 deletions

@ -1 +1 @@
Subproject commit 9492987c31b063ec92da661453fdd6eb74b1a4bc
Subproject commit 69a9a41802edf21c8e4784835654697e13db9ca2