14 references to RuntimeUnhealthy
Aspire.Hosting (6)
ApplicationModel\CommandsConfigurationExtensions.cs (1)
139
static bool IsRuntimeUnhealthy(string? state) => state == KnownResourceStates.
RuntimeUnhealthy
;
ApplicationModel\KnownResourceStates.cs (1)
35
public static readonly string RuntimeUnhealthy = nameof(
RuntimeUnhealthy
);
ApplicationModel\ResourceNotificationService.cs (3)
294
snapshot.State?.Text == KnownResourceStates.
RuntimeUnhealthy
,
412
snapshot.State.Text == KnownResourceStates.
RuntimeUnhealthy
)
442
snapshot.State?.Text == KnownResourceStates.
RuntimeUnhealthy
,
ResourceBuilderExtensions.cs (1)
3703
var targetRunning = resourceState == KnownResourceStates.Running || resourceState == KnownResourceStates.
RuntimeUnhealthy
;
Aspire.Hosting.Browsers (1)
BrowserLogsBuilderExtensions.cs (1)
189
if (parentState == KnownResourceStates.Running || parentState == KnownResourceStates.
RuntimeUnhealthy
)
Aspire.Hosting.Browsers.Tests (1)
src\Aspire.Hosting.Browsers\BrowserLogsBuilderExtensions.cs (1)
189
if (parentState == KnownResourceStates.Running || parentState == KnownResourceStates.
RuntimeUnhealthy
)
Aspire.Hosting.Maui (2)
Lifecycle\MauiBuildQueueEventSubscriber.cs (1)
471
|| string.Equals(state, KnownResourceStates.
RuntimeUnhealthy
, StringComparisons.ResourceState)
MauiOtlpExtensions.cs (1)
490
string.Equals(state, KnownResourceStates.
RuntimeUnhealthy
, StringComparisons.ResourceState));
Aspire.Hosting.Tests (4)
WaitForTests.cs (4)
198
[InlineData(nameof(KnownResourceStates.
RuntimeUnhealthy
))]
309
[InlineData(nameof(KnownResourceStates.
RuntimeUnhealthy
))]
343
[InlineData(nameof(KnownResourceStates.
RuntimeUnhealthy
))]
385
[InlineData(nameof(KnownResourceStates.
RuntimeUnhealthy
))]