Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
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
Commit
94adcc77
authored
Nov 27, 2013
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
storage: utilize destroyed flag
parent
703a3fe0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
circle/storage/models.py
+9
-0
No files found.
circle/storage/models.py
View file @
94adcc77
...
...
@@ -161,6 +161,10 @@ class Disk(TimeStampedModel):
otherwise, False.
:rtype: bool
"""
if
self
.
destroyed
:
self
.
destroyed
=
None
self
.
save
()
if
self
.
ready
:
return
False
...
...
@@ -191,10 +195,15 @@ class Disk(TimeStampedModel):
queue
=
"localhost.man"
)
def
destroy
(
self
,
user
=
None
,
task_uuid
=
None
):
if
self
.
destroyed
:
return
False
# TODO add activity logging
self
.
destroyed
=
timezone
.
now
()
self
.
save
()
return
True
def
destroy_async
(
self
,
user
=
None
):
local_tasks
.
destroy
.
apply_async
(
args
=
[
self
,
user
],
queue
=
'localhost.man'
)
...
...
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