Skip to content

Commit

Permalink
removed debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Oct 11, 2023
1 parent 9f864f0 commit 9e9427b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vercel/artifact.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ impl ArtifactPutRequest {

let headers = self.0.get_headers("PUT", Some(content_len));

let response = dbg!(client
let response = client
.put(&self.0.url)
.headers(headers)
.body(artifact.to_owned())
.send()
.await?);
.await?;

Ok(response)
}
Expand Down

0 comments on commit 9e9427b

Please sign in to comment.