Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Tim Geoghegan <[email protected]>
  • Loading branch information
jbr and tgeoghegan authored Sep 15, 2023
1 parent 593f9b8 commit 1f17bbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aggregator_api/src/routes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub(super) async fn get_config(
State(config): State<Arc<Config>>,
) -> Json<AggregatorApiConfig> {
Json(AggregatorApiConfig {
protocol: "DAP-05",
protocol: "DAP-07",
dap_url: config.public_dap_url.clone(),
role: AggregatorRole::Either,
vdafs: vec![
Expand Down
2 changes: 1 addition & 1 deletion aggregator_api/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async fn get_config() {
.await,
Status::Ok,
concat!(
r#"{"protocol":"DAP-05","dap_url":"https://dap.url/","role":"Either","vdafs":"#,
r#"{"protocol":"DAP-07","dap_url":"https://dap.url/","role":"Either","vdafs":"#,
r#"["Prio3Count","Prio3Sum","Prio3Histogram","Prio3CountVec","Prio3SumVec"],"#,
r#""query_types":["TimeInterval","FixedSize"]}"#
)
Expand Down

0 comments on commit 1f17bbc

Please sign in to comment.