3 writes to ErrorCount
Aspire.Dashboard (3)
ServiceClient\DashboardClient.cs (3)
335retryContext.ErrorCount++; 368retryContext.ErrorCount = 0; 493retryContext.ErrorCount = 0;
4 references to ErrorCount
Aspire.Dashboard (4)
ServiceClient\DashboardClient.cs (4)
310if (retryContext.ErrorCount > 0) 315var delay = ExponentialBackOff(retryContext.ErrorCount, maxSeconds: 15); 337_logger.LogError(ex, "Error #{ErrorCount} watching {WatchName}.", retryContext.ErrorCount, actionName); 359var call = _client!.WatchResources(new WatchResourcesRequest { IsReconnect = retryContext.ErrorCount != 0 }, headers: _headers, cancellationToken: cancellationToken);