mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-05-16 04:48:12 +02:00
9 lines
284 B
C#
9 lines
284 B
C#
namespace MaksIT.CertsUI.Engine.RuntimeCoordination;
|
|
|
|
/// <summary>
|
|
/// True when this process is the elected primary replica (Postgres lease) and may run ACME orchestration and background renewal.
|
|
/// </summary>
|
|
public interface IPrimaryReplicaWorkload {
|
|
bool IsPrimary { get; }
|
|
}
|