Loading src/device/service/drivers/emulated/EmulatedDriver.py +2 −0 Original line number Diff line number Diff line Loading @@ -156,6 +156,7 @@ class EmulatedDriver(_Driver): match = RE_GET_ENDPOINT_FROM_INTERFACE.match(resource_key) if match is not None: endpoint_uuid = match.group(1) if '.' in endpoint_uuid: endpoint_uuid = endpoint_uuid.split('.')[0] self.__synthetic_sampling_parameters.set_endpoint_configured(endpoint_uuid) results.append(True) Loading Loading @@ -190,6 +191,7 @@ class EmulatedDriver(_Driver): match = RE_GET_ENDPOINT_FROM_INTERFACE.match(resource_key) if match is not None: endpoint_uuid = match.group(1) if '.' in endpoint_uuid: endpoint_uuid = endpoint_uuid.split('.')[0] self.__synthetic_sampling_parameters.unset_endpoint_configured(endpoint_uuid) parent = resource_node.parent Loading Loading
src/device/service/drivers/emulated/EmulatedDriver.py +2 −0 Original line number Diff line number Diff line Loading @@ -156,6 +156,7 @@ class EmulatedDriver(_Driver): match = RE_GET_ENDPOINT_FROM_INTERFACE.match(resource_key) if match is not None: endpoint_uuid = match.group(1) if '.' in endpoint_uuid: endpoint_uuid = endpoint_uuid.split('.')[0] self.__synthetic_sampling_parameters.set_endpoint_configured(endpoint_uuid) results.append(True) Loading Loading @@ -190,6 +191,7 @@ class EmulatedDriver(_Driver): match = RE_GET_ENDPOINT_FROM_INTERFACE.match(resource_key) if match is not None: endpoint_uuid = match.group(1) if '.' in endpoint_uuid: endpoint_uuid = endpoint_uuid.split('.')[0] self.__synthetic_sampling_parameters.unset_endpoint_configured(endpoint_uuid) parent = resource_node.parent Loading