url to uri 94/6894/1
authorJuan <jquiroga@whitestack.com>
Fri, 16 Nov 2018 13:47:46 +0000 (10:47 -0300)
committerJuan <jquiroga@whitestack.com>
Fri, 16 Nov 2018 13:47:46 +0000 (10:47 -0300)
Change-Id: I02e971a223c24abda93574147586964463c68674
Signed-off-by: Juan <jquiroga@whitestack.com>
osm_common/dbmongo.py

index 6159e6a..57ce082 100644 (file)
@@ -80,8 +80,8 @@ class DbMongo(DbBase):
             master_key = config.get("commonkey") or config.get("masterpassword")
             if master_key:
                 self.set_secret_key(master_key)
             master_key = config.get("commonkey") or config.get("masterpassword")
             if master_key:
                 self.set_secret_key(master_key)
-            if config.get("url"):
-                self.client = MongoClient(config["url"])
+            if config.get("uri"):
+                self.client = MongoClient(config["uri"])
             else:
                 self.client = MongoClient(config["host"], config["port"])
             # TODO add as parameters also username=config.get("user"), password=config.get("password"))
             else:
                 self.client = MongoClient(config["host"], config["port"])
             # TODO add as parameters also username=config.get("user"), password=config.get("password"))