Skip to content

Commit

Permalink
temporarily removed optional headers
Browse files Browse the repository at this point in the history
  • Loading branch information
harshdoesdev committed Oct 6, 2023
1 parent 7330659 commit 1be4c31
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vercel-cache-helper"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
description = "Hello world"

Expand Down
2 changes: 1 addition & 1 deletion src/commands/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub async fn download(

let output_get_res = output_get_req.get().await?;

assert!(output_get_res.status().is_success(), "Build artifacts could not be downloaded: {:#?}", output_get_res);
assert!(output_get_res.status().is_success(), "Build artifacts could not be downloaded.");

println!("Build artifacts downloaded");

Expand Down
2 changes: 1 addition & 1 deletion src/vercel/remote_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl RemoteClient {
Ok(vercel_cache_helper::vercel::artifact::ArtifactGetRequest(
vercel_cache_helper::vercel::artifact::ArtifactBaseRequest::new(
self.token.to_string(),
dbg!(self.get_remote_cache_endpoint_url(hash)?.clone()),
self.get_remote_cache_endpoint_url(hash)?.clone(),
self.user_agent.to_string(),
options,
),
Expand Down

0 comments on commit 1be4c31

Please sign in to comment.