Skip to content

Commit

Permalink
Fixing compile errors from branching
Browse files Browse the repository at this point in the history
  • Loading branch information
cberkhoff committed Oct 31, 2024
1 parent 556d995 commit ef008fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ipa-core/src/net/server/handlers/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ pub mod test_helpers {

pub async fn assert_fails_with_handler(
req: hyper::Request<Body>,
handler: Arc<dyn RequestHandler<HelperIdentity>>,
handler: Arc<dyn RequestHandler<Identity = HelperIdentity>>,
expected_status: StatusCode,
) {
let test_server = TestServer::builder()
Expand All @@ -170,7 +170,7 @@ pub mod test_helpers {

pub async fn assert_success_with(
req: hyper::Request<Body>,
handler: Arc<dyn RequestHandler<HelperIdentity>>,
handler: Arc<dyn RequestHandler<Identity = HelperIdentity>>,
) -> bytes::Bytes {
let test_server = TestServer::builder()
.with_request_handler(handler)
Expand Down
1 change: 0 additions & 1 deletion ipa-core/src/net/transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ pub struct MpcHttpTransport {
#[derive(Clone)]
pub struct ShardHttpTransport {
pub(super) inner_transport: Arc<HttpTransport<Shard>>,
pub(super) shard_config: Sharded,
}

impl RouteParams<RouteId, NoQueryId, NoStep> for QueryConfig {
Expand Down

0 comments on commit ef008fa

Please sign in to comment.