summaryrefslogtreecommitdiffstats
path: root/pylog/onaplogging/mdcContext.py
diff options
context:
space:
mode:
authorKevin Smokowski <kevin.smokowski@att.com>2020-07-13 12:58:12 +0000
committerGerrit Code Review <gerrit@onap.org>2020-07-13 12:58:12 +0000
commite713a6ee28b4c7348eb17d2f228e0b89b8b9db5f (patch)
treef89dbbfcacbe1b5ccda88ef2c59550be8e7805e9 /pylog/onaplogging/mdcContext.py
parentc1884ba03fc92d9e680e09a303edf975286e63ac (diff)
parentb437b2c38ec0d5bb234fef0459b0e0533d08b7af (diff)
Merge "Pylog test suite"
Diffstat (limited to 'pylog/onaplogging/mdcContext.py')
-rw-r--r--pylog/onaplogging/mdcContext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylog/onaplogging/mdcContext.py b/pylog/onaplogging/mdcContext.py
index fa94536..ecdc2d9 100644
--- a/pylog/onaplogging/mdcContext.py
+++ b/pylog/onaplogging/mdcContext.py
@@ -48,7 +48,7 @@ class MDCContext(threading.local):
def remove(self, key):
- if key in self.localDict:
+ if key in self._localDict:
del self._localDict[key]
def clear(self):