Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
d9b61936
authored
Feb 20, 2014
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage/local_tasks: made abortable for async jobs
parent
0e9a8a65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
circle/storage/tasks/local_tasks.py
+13
-6
No files found.
circle/storage/tasks/local_tasks.py
View file @
d9b61936
from
manager.mancelery
import
celery
from
celery.contrib.abortable
import
AbortableTask
@celery.task
...
...
@@ -35,9 +36,15 @@ def restore(disk, user):
disk
.
restore
(
task_uuid
=
restore
.
request
.
id
,
user
=
user
)
@celery.task
def
create_from_url
(
Disk
,
url
,
params
,
user
):
Disk
.
create_from_url
(
url
=
url
,
params
=
params
,
task_uuid
=
create_from_url
.
request
.
id
,
user
=
user
)
class
create_from_url
(
AbortableTask
):
def
run
(
self
,
**
kwargs
):
Disk
=
kwargs
[
'cls'
]
url
=
kwargs
[
'url'
]
params
=
kwargs
[
'params'
]
user
=
kwargs
[
'user'
]
Disk
.
create_from_url
(
url
=
url
,
params
=
params
,
task_uuid
=
create_from_url
.
request
.
id
,
abortable_task
=
self
,
user
=
user
)
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