elsa-core/src/modules/Elsa.Workflows.Runtime/Options/ElsaReadinessHealthCheckOptions.cs
2026-05-21 00:09:46 +02:00

13 lines
410 B
C#

namespace Elsa.Workflows.Runtime.Options;
/// <summary>
/// Configures Elsa workflow runtime readiness health checks.
/// </summary>
public class ElsaReadinessHealthCheckOptions
{
/// <summary>
/// The maximum time the distributed-lock readiness probe waits to acquire its probe lock.
/// </summary>
public TimeSpan DistributedLockAcquisitionTimeout { get; set; } = TimeSpan.FromSeconds(1);
}