Commit 7c815142 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Interdomain Component:

- Deactivated unneeded event streams in RemoteDomainClients.
parent 22b44d1b
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -55,7 +55,11 @@ class RemoteDomainClients(threading.Thread):
        self.lock = threading.Lock()
        self.peer_domains = {}
        self.context_client = ContextClient()
        self.context_event_collector = EventsCollector(self.context_client)
        self.context_event_collector = EventsCollector(
            self.context_client, activate_context_collector=False, activate_topology_collector=False,
            activate_device_collector=True, activate_link_collector=False, activate_service_collector=False,
            activate_slice_collector=False, activate_connection_collector=False
        )

    def stop(self):
        self.terminate.set()