Commit eeedbb1a authored by Waleed Akbar's avatar Waleed Akbar
Browse files

fix: Remove auto_retrieve parameter from connection retrieval in SimapUpdater

parent 9765f112
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -716,7 +716,7 @@ class EventDispatcher(BaseEventDispatcher):
            Tuple of ( domain_name, processed_links) or None if failed
        """
        # Get the connection object
        connection = self._object_cache.get(CachedEntities.CONNECTION, connection_uuid, auto_retrieve=False)
        connection = self._object_cache.get(CachedEntities.CONNECTION, connection_uuid)
        if connection is None:
            LOGGER.warning('Connection {:s} not found in cache'.format(connection_uuid))
            return None