Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: tabVersion <[email protected]>
  • Loading branch information
tabVersion committed Jun 10, 2024
1 parent 3d4bd82 commit e66d43a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/connector/src/schema/schema_registry/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ impl Client {
}

// `unwrap` as the builder is not affected by any input right now
let inner = reqwest::Client::builder().build().unwrap();
let inner = reqwest::Client::builder()
.danger_accept_invalid_certs(true)
.build()
.unwrap();

Ok(Client {
inner,
Expand Down

0 comments on commit e66d43a

Please sign in to comment.