Fix SignalR 3.0 Streaming Sample (#14426)

This sample doesn't have any controllers.
pull/14429/head
Stephen Halter 2019-09-19 17:29:13 -07:00 committed by Rick Anderson
parent 6fa2d33d57
commit 9495d71b15
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ namespace SignalRChat
app.UseEndpoints(endpoints =>
{
endpoints.MapHub<StreamHub>("/streamHub");
endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
endpoints.MapRazorPages();
});
}
}