From: gifrerenom Date: Mon, 7 Mar 2022 16:57:25 +0000 (+0000) Subject: Fix bug 2150 to encrypt correct WIM account password field and check WIM accounts. X-Git-Tag: v12.0.3~1 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNBI.git;a=commitdiff_plain;h=4f73bd0628866f19f15f2361b667b9adc7443501 Fix bug 2150 to encrypt correct WIM account password field and check WIM accounts. Change-Id: I424453286bd057b3c95d5a1bc839ced3ac72ba50 Signed-off-by: gifrerenom --- diff --git a/osm_nbi/admin_topics.py b/osm_nbi/admin_topics.py index 8eccd20..b695693 100644 --- a/osm_nbi/admin_topics.py +++ b/osm_nbi/admin_topics.py @@ -568,7 +568,7 @@ class WimAccountTopic(CommonVimWimSdn): schema_new = wim_account_new_schema schema_edit = wim_account_edit_schema multiproject = True - password_to_encrypt = "wim_password" + password_to_encrypt = "password" config_to_encrypt = {} diff --git a/osm_nbi/instance_topics.py b/osm_nbi/instance_topics.py index 16bd406..c60445f 100644 --- a/osm_nbi/instance_topics.py +++ b/osm_nbi/instance_topics.py @@ -1602,7 +1602,7 @@ class NsLcmOpTopic(BaseTopic): if wim_account in wim_accounts: return try: - db_filter = self._get_project_filter(session, write=False, show_all=True) + db_filter = self._get_project_filter(session) db_filter["_id"] = wim_account self.db.get_one("wim_accounts", db_filter) except Exception: