diff --git a/aggregator/src/aggregator.rs b/aggregator/src/aggregator.rs index 47fd69676..b2cfeef54 100644 --- a/aggregator/src/aggregator.rs +++ b/aggregator/src/aggregator.rs @@ -5,7 +5,7 @@ use crate::{ aggregator::{ accumulator::Accumulator, aggregate_share::compute_aggregate_share, - error::{handle_ping_pong_error, ReportRejectionReason}, + error::{handle_ping_pong_error, ReportRejection, ReportRejectionReason}, error::{BatchMismatch, OptOutReason}, query_type::{CollectableQueryType, UploadableQueryType}, report_writer::{ReportWriteBatcher, WritableReport}, @@ -93,8 +93,6 @@ use tokio::{sync::Mutex, try_join}; use tracing::{debug, info, trace_span, warn}; use url::Url; -use self::error::ReportRejection; - pub mod accumulator; #[cfg(test)] mod aggregate_init_tests;