X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FMON.git;a=blobdiff_plain;f=osm_mon%2Fcore%2Fcommon_db.py;fp=osm_mon%2Fcore%2Fcommon_db.py;h=a9fcfbe522699f30cb20e89dd882c53581c86752;hp=4f6ace0b667a487638b675e8081c2bc2a7f141b2;hb=e11d5666a1adfcb2880d99ed16554cdc000507b7;hpb=0ccdba94d5ca1de0ff26c6aaf5a16aacc3c2fd0d diff --git a/osm_mon/core/common_db.py b/osm_mon/core/common_db.py index 4f6ace0..a9fcfbe 100644 --- a/osm_mon/core/common_db.py +++ b/osm_mon/core/common_db.py @@ -147,7 +147,7 @@ class CommonDbClient: def set_vim_account(self, vim_account_id: str, update_dict: dict) -> bool: try: # Set vim_account resources in mongo - self.common_db.set_one('vim_accounts', {"_id": vim_account_id}, update_dict) + self.common_db.set_one("vim_accounts", {"_id": vim_account_id}, update_dict) # self.common_db.set_one('vim_accounts', {"name": "test-vim"}, update_dict) return True except Exception: @@ -185,7 +185,9 @@ class CommonDbClient: return alarms def update_alarm_status(self, alarm_state: str, uuid): - modified_count = self.common_db.set_one("alarms", {"uuid": uuid}, {"alarm_status": alarm_state}) + modified_count = self.common_db.set_one( + "alarms", {"uuid": uuid}, {"alarm_status": alarm_state} + ) return modified_count def get_alarm_by_uuid(self, uuid: str):