Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Updated to reflect latest guidance to register endpoints via top-leve…
…l route registrations

Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
  • Loading branch information
WhitWaldo committed Apr 3, 2024
commit 885a6412c625e3a0ac65175c39a9fc01846e897d
Original file line number Diff line number Diff line change
Expand Up @@ -319,11 +319,8 @@ namespace MyActorService

app.UseRouting();

app.UseEndpoints(endpoints =>
{
// Register actors handlers that interface with the Dapr runtime.
endpoints.MapActorsHandlers();
});
// Register actors handlers that interface with the Dapr runtime.
app.MapActorsHandlers();
}
}
}
Expand Down