SCIM: box each bulk operation's dispatch, so the crate builds with the redis feature (SCIM-51)

With redis on, bulk()'s future nested past the compiler's query depth
limit. Boxing the per-operation call keeps it shallow; behavior is
unchanged.
This commit is contained in:
2026-09-19 10:15:39 -07:00
parent e5e326de6b
commit fdfa2bc259
+1 -1
View File
@@ -207,7 +207,7 @@ async fn run_one(
data.to_string().into_bytes()
};
match dispatch(ctx, kind, &route, None, &headers, &body).await {
match Box::pin(dispatch(ctx, kind, &route, None, &headers, &body)).await {
Ok(response) => {
let location = response
.body