X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fservice%2Fauditor%2Focloud_handler.py;fp=o2ims%2Fservice%2Fauditor%2Focloud_handler.py;h=d1e2fa77714735123eb2adfa9cd22d890cdda4e3;hb=7c167626f2692556b1fe073f87150f54a8c9910a;hp=4cc8ec741e732a16e100d28ebc13d1efd46c7b9c;hpb=d2f6cc674bf3623caf114a8d7709e70d55ec9340;p=pti%2Fo2.git diff --git a/o2ims/service/auditor/ocloud_handler.py b/o2ims/service/auditor/ocloud_handler.py index 4cc8ec7..d1e2fa7 100644 --- a/o2ims/service/auditor/ocloud_handler.py +++ b/o2ims/service/auditor/ocloud_handler.py @@ -20,7 +20,7 @@ from __future__ import annotations # from typing import List, Dict, Callable, Type # TYPE_CHECKING -from o2common.config import config +from o2common.config import config, conf # from o2common.service.messagebus import MessageBus from o2common.service.unit_of_work import AbstractUnitOfWork from o2ims.domain import events, commands @@ -82,13 +82,18 @@ def is_outdated(ocloud: Ocloud, stxobj: StxGenericModel): def create_by(stxobj: StxGenericModel) -> Ocloud: imsendpoint = config.get_api_url() + config.get_o2ims_api_base() + '/' - globalcloudId = stxobj.id # to be updated + globalcloudId = conf.DEFAULT.ocloud_global_id description = "An ocloud" ocloud = Ocloud(stxobj.id, stxobj.name, imsendpoint, globalcloudId, description, 1) ocloud.createtime = stxobj.createtime ocloud.updatetime = stxobj.updatetime ocloud.hash = stxobj.hash + ocloud.events.append(events.OcloudChanged( + id=stxobj.id, + notificationEventType=NotificationEventEnum.CREATE, + updatetime=stxobj.updatetime + )) return ocloud