Skip to content

Commit

Permalink
fix: clippy lint multiple-bound-locations (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
eopb authored May 10, 2024
1 parent 5829611 commit 9f04e99
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ginepro/src/balanced_channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,7 @@ where
}
}

async fn channel_inner<U: LookupService>(
self,
lookup_service: U,
) -> Result<LoadBalancedChannel, anyhow::Error>
async fn channel_inner<U>(self, lookup_service: U) -> Result<LoadBalancedChannel, anyhow::Error>
where
U: LookupService + Send + Sync + 'static + Sized,
{
Expand Down

0 comments on commit 9f04e99

Please sign in to comment.