Skip to content

Commit

Permalink
why didn't this show up the first time
Browse files Browse the repository at this point in the history
  • Loading branch information
adamspofford-dfinity committed Oct 17, 2024
1 parent f1d8cd0 commit a61c7c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion icx/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ async fn main() -> Result<()> {
serde_json::from_str::<SignedRequestStatus>(&buffer)
{
fetch_root_key_from_non_ic(&agent, &opts.replica).await?;
let response = agent
let (response, _) = agent
.request_status_signed(
&signed_request_status.request_id,
signed_request_status.effective_canister_id,
Expand Down
2 changes: 1 addition & 1 deletion ref-tests/tests/ic-ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ mod management_canister {
fn subnet_metrics() {
with_universal_canister(|agent, _| async move {
let metrics = agent
.read_state_subnet_metrics(Principal::self_authenticating(&agent.read_root_key()))
.read_state_subnet_metrics(Principal::self_authenticating(agent.read_root_key()))
.await?;
assert!(
metrics.num_canisters >= 1,
Expand Down
4 changes: 2 additions & 2 deletions ref-tests/tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ fn wait_signed() {

let read_envelope_serialized = serialized_bytes(read_state_envelope);

let result = agent
let (result, _) = agent
.wait_signed(&call_request_id, canister_id, read_envelope_serialized)
.await
.unwrap();
Expand Down Expand Up @@ -629,7 +629,7 @@ mod sign_send {
let ten_secs = time::Duration::from_secs(10);
thread::sleep(ten_secs);

let response = agent
let (response, _) = agent
.request_status_signed(
&signed_request_status.request_id,
signed_request_status.effective_canister_id,
Expand Down

0 comments on commit a61c7c6

Please sign in to comment.