Fix bug 1901 to encrypt correct WIM account password field and check WIM accounts.
Change-Id: I424453286bd057b3c95d5a1bc839ced3ac72ba50
Signed-off-by: gifrerenom <lluis.gifre@cttc.es>
diff --git a/osm_nbi/admin_topics.py b/osm_nbi/admin_topics.py
index 786d237..07657ca 100644
--- a/osm_nbi/admin_topics.py
+++ b/osm_nbi/admin_topics.py
@@ -522,7 +522,7 @@
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 dbdc583..8f34051 100644
--- a/osm_nbi/instance_topics.py
+++ b/osm_nbi/instance_topics.py
@@ -1354,7 +1354,7 @@
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: