Skip to content

Commit

Permalink
Remove global HPKE keypair cache from tracing spans (#2213)
Browse files Browse the repository at this point in the history
  • Loading branch information
inahga authored Nov 1, 2023
1 parent c82ca53 commit 24e9a14
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions aggregator/src/aggregator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1110,19 +1110,7 @@ macro_rules! vdaf_ops_dispatch {
}

impl VdafOps {
#[tracing::instrument(
skip(
self,
clock,
upload_decrypt_failure_counter,
upload_decode_failure_counter,
task,
report_writer,
report
),
fields(task_id = ?task.id()),
err
)]
#[tracing::instrument(skip_all, fields(task_id = ?task.id()), err)]
async fn handle_upload<C: Clock>(
&self,
clock: &C,
Expand Down Expand Up @@ -1170,7 +1158,7 @@ impl VdafOps {
/// Implements the `/aggregate` endpoint for initialization requests for the helper, described
/// in §4.4.4.1 & §4.4.4.2 of draft-gpew-priv-ppm.
#[tracing::instrument(
skip(self, datastore, aggregate_step_failure_counter, task, req_bytes),
skip(self, datastore, global_hpke_keypairs, aggregate_step_failure_counter, task, req_bytes),
fields(task_id = ?task.id()),
err
)]
Expand Down

0 comments on commit 24e9a14

Please sign in to comment.