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