We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a1b94 commit 6c90bd3Copy full SHA for 6c90bd3
vulnerabilities/schedules.py
@@ -88,8 +88,9 @@ def update_pipeline_schedule():
88
from vulnerabilities.importers import IMPORTERS_REGISTRY
89
from vulnerabilities.improvers import IMPROVERS_REGISTRY
90
from vulnerabilities.models import PipelineSchedule
91
+ from vulnerabilities.pipelines.exporters import EXPORTERS_REGISTRY
92
- pipelines = IMPORTERS_REGISTRY | IMPROVERS_REGISTRY
93
+ pipelines = IMPORTERS_REGISTRY | IMPROVERS_REGISTRY | EXPORTERS_REGISTRY
94
95
PipelineSchedule.objects.exclude(pipeline_id__in=pipelines.keys()).delete()
96
for id, pipeline_class in pipelines.items():
0 commit comments