summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--releasenotes/notes/fix-missing-request-id-in-log.yaml5
-rw-r--r--trove/common/context.py1
2 files changed, 6 insertions, 0 deletions
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 00000000..2b62250b
--- /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 <https://storyboard.openstack.org/#!/story/2010451>`__
diff --git a/trove/common/context.py b/trove/common/context.py
index 6ddc3a6e..bf9c8e59 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