mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 14:29:45 +00:00
remove unnecessary debug
This commit is contained in:
committed by
Aiden McClelland
parent
92ff208bb7
commit
e6d1e49984
@@ -348,12 +348,12 @@ async fn cli_install(
|
|||||||
let body = Body::wrap_stream(tokio_util::io::ReaderStream::new(file));
|
let body = Body::wrap_stream(tokio_util::io::ReaderStream::new(file));
|
||||||
let client = reqwest::Client::new();
|
let client = reqwest::Client::new();
|
||||||
let res = client
|
let res = client
|
||||||
.post(dbg!(format!(
|
.post(format!(
|
||||||
"{}://{}/rest/rpc/{}",
|
"{}://{}/rest/rpc/{}",
|
||||||
ctx.protocol(),
|
ctx.protocol(),
|
||||||
ctx.host(),
|
ctx.host(),
|
||||||
guid
|
guid
|
||||||
)))
|
))
|
||||||
.header(CONTENT_LENGTH, content_length)
|
.header(CONTENT_LENGTH, content_length)
|
||||||
.body(body)
|
.body(body)
|
||||||
.send()
|
.send()
|
||||||
|
|||||||
Reference in New Issue
Block a user