aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tasks/compliance_check_sets.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tasks/compliance_check_sets.rb')
-rw-r--r--lib/tasks/compliance_check_sets.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/tasks/compliance_check_sets.rb b/lib/tasks/compliance_check_sets.rb
new file mode 100644
index 000000000..c53c7f9ed
--- /dev/null
+++ b/lib/tasks/compliance_check_sets.rb
@@ -0,0 +1,11 @@
+namespace :compliance_check_sets do
+ desc "Notify parent check sets when children finish"
+ task notify_parent: :environment do
+ ParentNotifier.new(ComplianceCheckSet).notify_when_finished
+ end
+
+ desc "Mark old unfinished check sets as 'aborted'"
+ task abort_old: :environment do
+ ComplianceCheckSet.abort_old
+ end
+end