Skip to content

Commit

Permalink
Update src/ReverseProxy/Management/ProxyConfigManager.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Miha Zupan <[email protected]>
  • Loading branch information
ReubenBond and MihaZupan authored Aug 9, 2023
1 parent 979ad61 commit e78e7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ReverseProxy/Management/ProxyConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public ProxyConfigManager(
_httpClientFactory = httpClientFactory ?? throw new ArgumentNullException(nameof(httpClientFactory));
_activeHealthCheckMonitor = activeHealthCheckMonitor ?? throw new ArgumentNullException(nameof(activeHealthCheckMonitor));
_clusterDestinationsUpdater = clusterDestinationsUpdater ?? throw new ArgumentNullException(nameof(clusterDestinationsUpdater));
_destinationResolver = destinationResolver;
_destinationResolver = destinationResolver ?? throw new ArgumentNullException(nameof(destinationResolver));
_configChangeListeners = configChangeListeners?.ToArray() ?? Array.Empty<IConfigChangeListener>();

if (_providers.Length == 0)
Expand Down

0 comments on commit e78e7f5

Please sign in to comment.