Skip to content

Commit

Permalink
fix csharp example in load balancing page (microsoft#2411)
Browse files Browse the repository at this point in the history
  • Loading branch information
allantargino authored and MihaZupan committed Feb 21, 2024
1 parent 235e8ec commit 945c097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docfx/articles/load-balancing.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var clusters = new[]
{
ClusterId = "cluster1",
LoadBalancingPolicy = LoadBalancingPolicies.RoundRobin,
Destinations = new Dictionary<string, Destination>(StringComparer.OrdinalIgnoreCase)
Destinations = new Dictionary<string, DestinationConfig>(StringComparer.OrdinalIgnoreCase)
{
{ "destination1", new DestinationConfig() { Address = "https://localhost:10000" } },
{ "destination2", new DestinationConfig() { Address = "https://localhost:10010" } }
Expand Down

0 comments on commit 945c097

Please sign in to comment.