From e6d1e499849ff7c2ad292f32f3808d18f26b0034 Mon Sep 17 00:00:00 2001 From: Keagan McClelland Date: Sat, 4 Dec 2021 15:22:29 -0700 Subject: [PATCH] remove unnecessary debug --- appmgr/src/install/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appmgr/src/install/mod.rs b/appmgr/src/install/mod.rs index 121492851..457d1a747 100644 --- a/appmgr/src/install/mod.rs +++ b/appmgr/src/install/mod.rs @@ -348,12 +348,12 @@ async fn cli_install( let body = Body::wrap_stream(tokio_util::io::ReaderStream::new(file)); let client = reqwest::Client::new(); let res = client - .post(dbg!(format!( + .post(format!( "{}://{}/rest/rpc/{}", ctx.protocol(), ctx.host(), guid - ))) + )) .header(CONTENT_LENGTH, content_length) .body(body) .send()