From: montesmoreno Date: Wed, 29 Mar 2017 11:43:58 +0000 (+0200) Subject: Fixed bug that was ommiting the user and password info of the SDN controllers X-Git-Tag: v2.0.0~32 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F1397%2F2;hp=275b199fa96ef23eeacb5974c7d32c09c2ac2987;p=osm%2Fopenvim.git Fixed bug that was ommiting the user and password info of the SDN controllers Change-Id: I90ea692bc7bd4c5689aca9f7165defb251c9e850 Signed-off-by: montesmoreno --- diff --git a/ovim.py b/ovim.py index 3166972..965cf30 100644 --- a/ovim.py +++ b/ovim.py @@ -351,6 +351,8 @@ class ovim(): temp_dict['of_port'] = db_config['port'] temp_dict['of_dpid'] = db_config['dpid'] temp_dict['of_controller'] = db_config['type'] + temp_dict['of_user'] = db_config['user'] + temp_dict['of_password'] = db_config['password'] temp_dict['of_debug'] = self.config['log_level_of']