Remove debug statement
This commit is contained in:
parent
84941e2cb4
commit
b71253d8dc
1 changed files with 0 additions and 1 deletions
|
@ -179,7 +179,6 @@ pub async fn update_server_state(
|
||||||
let req = Request::from_config_and_state(secret, cli);
|
let req = Request::from_config_and_state(secret, cli);
|
||||||
debug!("Sending ping request: {:?}", req);
|
debug!("Sending ping request: {:?}", req);
|
||||||
let client = reqwest::Client::new();
|
let client = reqwest::Client::new();
|
||||||
dbg!(serde_json::to_string(&req).unwrap());
|
|
||||||
let resp = client.post(CONTROL_CENTER_PING_URL).json(&req).send().await;
|
let resp = client.post(CONTROL_CENTER_PING_URL).json(&req).send().await;
|
||||||
match resp {
|
match resp {
|
||||||
Ok(resp) => match resp.json::<Response>().await {
|
Ok(resp) => match resp.json::<Response>().await {
|
||||||
|
|
Loading…
Reference in a new issue