Skip to content

Commit c39ab74

Browse files
CopilotReubenBond
andauthored
Fix incorrect API name in dashboard documentation: AddOrleansDashboard → AddDashboard (#9894)
* Initial plan * Update AddOrleansDashboard to AddDashboard in README files Co-authored-by: ReubenBond <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: ReubenBond <[email protected]>
1 parent 21aa537 commit c39ab74

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

playground/DashboardSeparateHost/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ dashboardBuilder.UseOrleansClient(clientBuilder =>
6262
options.Gateways.Add(new IPEndPoint(IPAddress.Loopback, 30000).ToGatewayUri()));
6363

6464
// Add dashboard services
65-
clientBuilder.AddOrleansDashboard();
65+
clientBuilder.AddDashboard();
6666
});
6767

6868
var app = dashboardBuilder.Build();
@@ -105,7 +105,7 @@ dashboardBuilder.UseOrleansClient(clientBuilder =>
105105
options.Gateways.Add(new IPEndPoint(IPAddress.Parse("10.0.0.2"), 30000).ToGatewayUri());
106106
});
107107

108-
clientBuilder.AddOrleansDashboard();
108+
clientBuilder.AddDashboard();
109109
});
110110
```
111111

src/Dashboard/Orleans.Dashboard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ builder.UseOrleansClient(clientBuilder =>
6363
options.Gateways.Add(new IPEndPoint(IPAddress.Loopback, 30000).ToGatewayUri()));
6464

6565
// Add dashboard services
66-
clientBuilder.AddOrleansDashboard();
66+
clientBuilder.AddDashboard();
6767
});
6868

6969
var app = builder.Build();

0 commit comments

Comments
 (0)