We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9f4925 commit bba172fCopy full SHA for bba172f
src/agent-client-protocol/src/rpc_tests.rs
@@ -110,7 +110,7 @@ impl Client for TestClient {
110
}
111
112
async fn ext_method(&self, args: ExtRequest) -> Result<ExtResponse> {
113
- match dbg!(args.method.as_ref()) {
+ match args.method.as_ref() {
114
"example.com/ping" => Ok(ExtResponse::new(raw_json!({
115
"response": "pong",
116
"params": args.params
@@ -296,8 +296,7 @@ impl Agent for TestAgent {
296
297
298
299
- dbg!();
300
301
"example.com/echo" => {
302
let response = serde_json::json!({
303
"echo": args.params
0 commit comments