15 lines
523 B
C#
15 lines
523 B
C#
using ZB.MOM.WW.OtOpcUa.Commons.Types;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Commons.Messages.Deploy;
|
|
|
|
/// <summary>
|
|
/// Coordinator-published event indicating that the deployment failed and was rolled back.
|
|
/// Includes the set of nodes that NACKed or timed out so the admin UI can surface which
|
|
/// node(s) are sticky on the prior good revision.
|
|
/// </summary>
|
|
public sealed record DeploymentFailed(
|
|
DeploymentId DeploymentId,
|
|
string FailureReason,
|
|
IReadOnlyList<NodeId> FailedNodes,
|
|
CorrelationId CorrelationId);
|