Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Fix flag name for --portal-identity. (#122)
Browse files Browse the repository at this point in the history
Previously this was looking for --aggregation-identity.
  • Loading branch information
jsha authored Oct 31, 2020
1 parent a69e60f commit 4e7fa5e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions facilitator/src/bin/facilitator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -742,9 +742,8 @@ fn main() -> Result<(), anyhow::Error> {
"portal-output or portal-manifest-base-url required"
)),
}?;
let aggregation_identity = sub_matches.value_of("aggregation-identity");

let aggregation_transport = transport_for_path(portal_bucket, aggregation_identity)?;
let portal_identity = sub_matches.value_of("portal-identity");
let aggregation_transport = transport_for_path(portal_bucket, portal_identity)?;

// Get the key we will use to sign sum part messages sent to the
// portal server.
Expand Down

0 comments on commit 4e7fa5e

Please sign in to comment.