Skip to content

Commit

Permalink
Merge pull request #8 from dscvr-one/BAC-1432
Browse files Browse the repository at this point in the history
fix: disable verified canister signatures
  • Loading branch information
MrWoo034 authored Apr 29, 2024
2 parents c81768b + 9c8af9f commit 5fc3d92
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ impl AgentImpl for WrappedAgent {
let agent = Agent::builder()
.with_transport(ReqwestHttpReplicaV2Transport::create(&self.url)?)
.with_arc_identity(identity)
.with_verify_query_signatures(false)
.build()?;

let agent = Arc::new(WrappedAgent {
Expand Down Expand Up @@ -91,6 +92,7 @@ pub async fn new<U: Into<String>>(
let agent = Agent::builder()
.with_transport(ReqwestHttpReplicaV2Transport::create(url_string.clone())?)
.with_arc_identity(identity)
.with_verify_query_signatures(false)
.build()?;

let agent = Arc::new(WrappedAgent {
Expand Down

0 comments on commit 5fc3d92

Please sign in to comment.