Skip to content

Commit b897016

Browse files
chore: fix MSRV checks
1 parent 9614fd3 commit b897016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/router/src/services/authentication.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ where
408408
impl<A, I> AuthenticateAndFetch<AuthenticationData, A> for HeaderAuth<I>
409409
where
410410
A: SessionStateInfo + Sync,
411-
I: AuthenticateAndFetch<AuthenticationData, A> + GetAuthType + Sync,
411+
I: AuthenticateAndFetch<AuthenticationData, A> + GetAuthType + Sync + Send,
412412
{
413413
async fn authenticate_and_fetch(
414414
&self,

0 commit comments

Comments
 (0)