Skip to content

Commit 833ddbe

Browse files
Fix broken build (#10541)
1 parent 44b2768 commit 833ddbe

File tree

1 file changed

+1
-1
lines changed
  • src/Servers/Kestrel/samples/PlaintextApp

1 file changed

+1
-1
lines changed

src/Servers/Kestrel/samples/PlaintextApp/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void Configure(IApplicationBuilder app)
2727
response.ContentType = "text/plain";
2828
response.ContentLength = payload.Length;
2929

30-
return response.BodyPipe.WriteAsync(payload).GetAsTask();
30+
return response.BodyWriter.WriteAsync(payload).GetAsTask();
3131
});
3232
}
3333

0 commit comments

Comments
 (0)