diff options
author | maopeng zhang <zhang.maopeng1@zte.com.cn> | 2019-07-16 08:54:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-16 08:54:31 +0000 |
commit | a9c7a87a003ed557ff421edf0f33739ae6f122bd (patch) | |
tree | 57175b681318bc23a35177852dff9b3bdc00d15e | |
parent | 563ecf2c65bfa943890b63ae2f0e95c3a5908dee (diff) | |
parent | 6e6f34e384d3e2cf415f4cb455979fc925e6b194 (diff) |
Merge "Solving redisco problem"
-rw-r--r-- | lcm/pub/redisco/containers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/pub/redisco/containers.py b/lcm/pub/redisco/containers.py index 89572940..4f2d10c3 100644 --- a/lcm/pub/redisco/containers.py +++ b/lcm/pub/redisco/containers.py @@ -67,7 +67,7 @@ class Container(object): if hasattr(self, 'db_cache') and self.db_cache: return self.db_cache else: - from redisco import connection + from lcm.pub.redisco import connection self.db_cache = connection return self.db_cache |