You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
discover_service_using_chariott in samples/common/src/utils.rs and core/common/src/utils.rs check if communication kind and communication reference match what is expected. There's currently a bug where it throws an error if both are incorrect, but not one or the other.
if service.communication_kind != expected_communication_kind && service.communication_reference != expected_communication_reference { Err(Status::not_found(
Acceptance criteria
If either communication kind or communication reference are incorrect, "discover_service_using_chariott" should throw an error
The text was updated successfully, but these errors were encountered:
Description
discover_service_using_chariott in samples/common/src/utils.rs and core/common/src/utils.rs check if communication kind and communication reference match what is expected. There's currently a bug where it throws an error if both are incorrect, but not one or the other.
if service.communication_kind != expected_communication_kind && service.communication_reference != expected_communication_reference { Err(Status::not_found(
Acceptance criteria
The text was updated successfully, but these errors were encountered: