You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wasi-http: use UnsyncBoxBody to support axum (#11941)
The Body type used by the axum web application framework is not Sync,
and not compatible with http_body_util::combinations::BoxBody. Luckily,
an alternative UnsyncBoxBody exists.
Replace all wasi-http p3 usages of BoxBody with UnsyncBoxBody.
Some wasi-http p2 code refers directly to hyper types which use the
sync BoxBody. Do not modify those.
0 commit comments