Skip to content

Commit

Permalink
fix: remove extraneous println
Browse files Browse the repository at this point in the history
  • Loading branch information
average-gary committed Dec 31, 2024
1 parent 8631757 commit a316858
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sources/util/http_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ pub(crate) async fn call<
if part.contains("nonce") {
nonce = part.split("=").collect::<Vec<&str>>()[1].trim_matches('"');
}
println!("{}", part);
}
let ha1 = format!("{:x}", md5::Md5::digest(format!("{}:{}:{}", username_inner, realm, user_password_inner.inner())));
let ha2 = format!("{:x}", md5::Md5::digest(format!("GET:{}", uri.path())));
Expand Down

0 comments on commit a316858

Please sign in to comment.