Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2233
Remove Ponos from CE
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove Ponos from CE
move-ponos-ee
into
community
Overview
1
Commits
23
Pipelines
0
Changes
2
Merged
Valentin Rigal
requested to merge
move-ponos-ee
into
community
1 year ago
Overview
1
Commits
23
Pipelines
0
Changes
2
Expand
Based on
!2227 (merged)
TODO:
Remove & update tests
Edited
1 year ago
by
Valentin Rigal
0
0
Merge request reports
Viewing commit
e96b1a64
Show latest version
2 files
+
4
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
e96b1a64
Allow to override default tasks scheduler
· e96b1a64
Valentin Rigal
authored
1 year ago
arkindex/process/models.py
+
2
−
1
Options
@@ -10,6 +10,7 @@ from django.db.models import F, Q
from
django.urls
import
reverse
from
django.utils
import
timezone
from
django.utils.functional
import
cached_property
from
django.utils.module_loading
import
cached_import
from
enumfields
import
Enum
,
EnumField
import
pgtrigger
@@ -390,7 +391,7 @@ class Process(IndexableModel):
"""
Build and start a new run for this process.
"""
from
arkindex.project.triggers
import
schedule_tasks
schedule_tasks
=
cached_import
(
*
settings
.
SCHEDULED_TASKS_TRIGGER
)
process_builder
=
ProcessBuilder
(
self
)
process_builder
.
validate
()
Loading