X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=o2ims%2Fentrypoints%2Fresource_watcher.py;h=9e1748534ab0bdfe72ace447a18b73548c42be4f;hb=19ee63847f8eb032009e63634b90eb594f3c0408;hp=acde2d2cb32767145d0f023e50042ea0333dd0d4;hpb=d4513e022d7d75d9967072cec1e0d7db34571120;p=pti%2Fo2.git diff --git a/o2ims/entrypoints/resource_watcher.py b/o2ims/entrypoints/resource_watcher.py index acde2d2..9e17485 100644 --- a/o2ims/entrypoints/resource_watcher.py +++ b/o2ims/entrypoints/resource_watcher.py @@ -50,17 +50,17 @@ class WatcherService(cotyledon.Service): def run(self): try: root = WatcherTree(OcloudWatcher( - StxSaOcloudClient(), self.bus.uow)) + StxSaOcloudClient(), self.bus)) root.addchild( - DmsWatcher(StxSaDmsClient(), self.bus.uow)) + DmsWatcher(StxSaDmsClient(), self.bus)) child_respool = root.addchild( ResourcePoolWatcher(StxSaResourcePoolClient(), - self.bus.uow)) + self.bus)) child_pserver = child_respool.addchild( - PServerWatcher(StxPserverClient(), self.bus.uow)) + PServerWatcher(StxPserverClient(), self.bus)) child_pserver.addchild( - PServerCpuWatcher(StxCpuClient(), self.bus.uow)) + PServerCpuWatcher(StxCpuClient(), self.bus)) self.worker.add_watcher(root)