We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b35c6 commit e0212dfCopy full SHA for e0212df
packages/core-bridge/src/client.rs
@@ -559,7 +559,8 @@ async fn client_invoke_health_service(
559
560
match call.rpc.as_str() {
561
"Check" => rpc_call!(retry_client, call, check),
562
- // Intentionally ignore 'watch' because it's a streaming method
+ // Intentionally ignore 'watch' because it's a streaming method, which is not currently
563
+ // supported by the macro and client-side code, and not needed anyway for any SDK use case.
564
_ => Err(BridgeError::TypeError {
565
field: None,
566
message: format!("Unknown RPC call {}", call.rpc),
0 commit comments