2 writes to KubernetesConfigReadRetryIntervalMilliseconds
Aspire.Hosting (1)
Dcp\DcpOptions.cs (1)
331options.KubernetesConfigReadRetryIntervalMilliseconds = dcpPublisherConfiguration.GetValue(nameof(options.KubernetesConfigReadRetryIntervalMilliseconds), options.KubernetesConfigReadRetryIntervalMilliseconds);
Aspire.Hosting.Tests (1)
Dcp\KubernetesServiceTests.cs (1)
214KubernetesConfigReadRetryIntervalMilliseconds = 50,
4 references to KubernetesConfigReadRetryIntervalMilliseconds
Aspire.Hosting (4)
Dcp\DcpOptions.cs (2)
331options.KubernetesConfigReadRetryIntervalMilliseconds = dcpPublisherConfiguration.GetValue(nameof(options.KubernetesConfigReadRetryIntervalMilliseconds), options.KubernetesConfigReadRetryIntervalMilliseconds);
Dcp\KubernetesService.cs (2)
564MaxDelay = TimeSpan.FromMilliseconds(dcpOptions.Value.KubernetesConfigReadRetryIntervalMilliseconds), 625await Task.Delay(TimeSpan.FromMilliseconds(dcpOptions.Value.KubernetesConfigReadRetryIntervalMilliseconds), cancellationToken).ConfigureAwait(false);