Skip to content

Commit

Permalink
fix csharp example in load balancing page (#2411) (#2413)
Browse files Browse the repository at this point in the history
Co-authored-by: Allan Targino <[email protected]>
  • Loading branch information
MihaZupan and allantargino authored Feb 27, 2024
1 parent 235e8ec commit af6b2fb
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 af6b2fb

Please sign in to comment.