Skip to content

Commit 35fa107

Browse files
committed
fix build
1 parent a998c61 commit 35fa107

File tree

1 file changed

+1
-1
lines changed
  • turbopack/crates/turbopack-dev-server/src

1 file changed

+1
-1
lines changed

turbopack/crates/turbopack-dev-server/src/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ pub async fn process_request_with_content_source(
190190
hyper::header::HeaderValue::try_from(content.len().to_string())?,
191191
);
192192

193-
response.body(hyper::Body::wrap_stream(content.read()))?
193+
response.body(hyper::Body::wrap_stream(ReaderStream::new(content.read())))?
194194
};
195195

196196
return Ok((response, side_effects));

0 commit comments

Comments
 (0)