fix(cms-deployment): change imagePullPolicy to IfNotPresent for cms container
Build and Deploy to Kubernetes / build-and-deploy (push) Failing after 19m13s

This commit is contained in:
masoodafar-web
2026-06-14 00:09:43 +03:30
parent dba0b63a70
commit 29fa7ff435
2 changed files with 12 additions and 1 deletions
@@ -179,6 +179,17 @@ public class NetworkMembershipService : NetworkMembershipContract.NetworkMembers
node.IsActivatedInTargetWeek = dto.IsActivatedInTargetWeek;
node.PackageName = dto.PackageName ?? string.Empty;
if (dto.PackageId.HasValue)
{
node.PackageId = dto.PackageId.Value;
}
if (dto.IsNewActivation.HasValue)
{
node.IsNewActivation = dto.IsNewActivation.Value;
}
// Recursively convert children
if (dto.LeftChild != null)
{