From 9c8af9fac95be355220027567797b78b16caf608 Mon Sep 17 00:00:00 2001 From: Chandra Penke Date: Sun, 28 Apr 2024 15:19:00 -0700 Subject: [PATCH] fix: disable verified canister signatures --- crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs b/crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs index 469205c..53d9bb8 100644 --- a/crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs +++ b/crates/dscvr-canister-agent/src/agent_impl/replica_impl.rs @@ -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 { @@ -91,6 +92,7 @@ pub async fn new>( 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 {