Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
b6c68976
Commit
b6c68976
authored
Feb 16, 2016
by
Mathieu Rodic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[GIT] removed unnecessary file
parent
8b0d5632
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
39 deletions
+0
-39
schedule.py
gargantext/util/schedule.py
+0
-39
No files found.
gargantext/util/schedule.py
deleted
100644 → 0
View file @
8b0d5632
"""This module defines three distinct decorators for scheduling.
"""
def
scheduled_now
(
func
):
"""Provides a decorator to execute the task right away.
Mostly useful for debugging purpose.
"""
return
func
import
threading
def
scheduled_thread
(
func
):
"""Provides a decorator to schedule a task as a new thread.
Problem: a shutdown may lose the task forever...
"""
def
go
(
*
args
,
**
kwargs
):
thread
=
threading
.
Thread
(
target
=
func
,
args
=
args
,
kwargs
=
kwargs
)
thread
.
start
()
return
go
from
celery
import
shared_task
def
scheduled_celery
(
func
):
"""Provides a decorator to schedule a task with Celery.
"""
@
shared_task
def
_func
(
*
args
,
**
kwargs
):
func
(
*
args
,
**
kwargs
)
def
go
(
*
args
,
**
kwargs
):
_func
.
apply_async
(
args
=
args
,
kwargs
=
kwargs
)
return
go
from
gargantext.settings
import
DEBUG
if
DEBUG
==
True
:
# scheduled = scheduled_now
scheduled
=
scheduled_thread
else
:
scheduled
=
scheduled_celery
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment