diff --git a/releasenotes/notes/fix-missing-request-id-in-log.yaml b/releasenotes/notes/fix-missing-request-id-in-log.yaml new file mode 100644 index 0000000000..2b62250be7 --- /dev/null +++ b/releasenotes/notes/fix-missing-request-id-in-log.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fix missing request-id in Trove services logs. + `Story 2010451 `__ diff --git a/trove/common/context.py b/trove/common/context.py index 6ddc3a6ed9..bf9c8e5947 100644 --- a/trove/common/context.py +++ b/trove/common/context.py @@ -62,6 +62,7 @@ class TroveContext(context.RequestContext): return parent_dict def update_store(self): + super(TroveContext, self).update_store() local.store.context = self @classmethod