Skip to content

Commit 71eb4b4

Browse files
authored
Update signalr-howto-scale-multi-instances.md
1 parent 20bd364 commit 71eb4b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-signalr/signalr-howto-scale-multi-instances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ services.AddSignalR()
122122
});
123123
```
124124

125-
`ServiceOptions.Endpoints` also supports hot-reload. You could configure `ServiceOptions` using [options pattern](/aspnet/core/fundamentals/configuration/options?#ioptionsmonitor) to hot-reload the endpoints from your configurations and customize how they are loaded. The below sample code shows how to load connection strings from one configuration section and public URL exposed by [reverse proxies](./signalr-howto-reverse-proxy-overview.md) from another:
125+
`ServiceOptions.Endpoints` also supports hot-reload. The below sample code shows how to load connection strings from one configuration section and public URL exposed by [reverse proxies](./signalr-howto-reverse-proxy-overview.md) from another, and as long as configuration supports hot-reload, the endpoints could be updated on the fly.
126126
```cs
127127
services.Configure<ServiceOptions>(o =>
128128
{

0 commit comments

Comments
 (0)