From fdb207bf6eaf900293812229b3deb9c3a31c8eec Mon Sep 17 00:00:00 2001 From: irriden Date: Mon, 16 Oct 2023 21:47:28 +0000 Subject: [PATCH] tester: update ctrl post message route --- tester/src/ctrl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tester/src/ctrl.rs b/tester/src/ctrl.rs index 657e367..717fa9b 100644 --- a/tester/src/ctrl.rs +++ b/tester/src/ctrl.rs @@ -43,7 +43,7 @@ async fn main() -> anyhow::Result<()> { .expect("couldnt build reqwest client"); let res = client - .post(format!("{}/control?msg={}", broker_url, msg_hex)) + .post(format!("{}/control?msg={}&cid={}", broker_url, msg_hex, "2a79fae7f7c5349621242192f8a4a11d")) .header("Content-Type", "application/json") .send() .await?;