diff --git a/.gitignore b/.gitignore index 66fd13c..093b973 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ # Dependency directories (remove the comment below to include it) # vendor/ + +cmd/server/server +cmd/server/start_dev.sh diff --git a/cmd/server/server b/cmd/server/server deleted file mode 100755 index cea31af..0000000 Binary files a/cmd/server/server and /dev/null differ diff --git a/internal/system-notification-rule/syste-notification-rule.go b/internal/system-notification-rule/syste-notification-rule.go index 602f032..6118462 100644 --- a/internal/system-notification-rule/syste-notification-rule.go +++ b/internal/system-notification-rule/syste-notification-rule.go @@ -97,7 +97,7 @@ func (x *SystemNotificationAccessor) GetIncompletedRules() ([]SystemNotification Joins("join clusters on clusters.id = organizations.primary_cluster_id AND clusters.status = ?", domain.ClusterStatus_RUNNING). Joins("join app_groups on app_groups.cluster_id = clusters.id AND app_groups.status = ?", domain.AppGroupStatus_RUNNING). Where("system_notification_rules.status = ?", domain.SystemNotificationRuleStatus_PENDING). - Where("system_notification_rules.is_system = true"). // FOR TEST!!!! + //Where("system_notification_rules.is_system = true"). // FOR TEST!!!! Order("system_notification_rules.organization_id"). Find(&rules)