Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
31c9b14a
authored
Nov 12, 2019
by
Bálint Máhonfai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add store upload link and exported filename to disk
parent
889845e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
circle/storage/models.py
+4
-2
No files found.
circle/storage/models.py
View file @
31c9b14a
...
...
@@ -473,10 +473,12 @@ class Disk(TimeStampedModel):
disk
.
save
()
return
disk
def
export
(
self
,
format
,
timeout
=
600
):
def
export
(
self
,
format
,
upload_link
,
timeout
=
600
):
exported_name
=
self
.
name
if
self
.
name
!=
''
else
self
.
filename
queue_name
=
self
.
get_remote_queue_name
(
'storage'
,
priority
=
'slow'
)
storage_tasks
.
export
.
apply_async
(
args
=
[
self
.
get_disk_desc
(),
format
],
args
=
[
self
.
get_disk_desc
(),
format
,
exported_name
,
upload_link
],
queue
=
queue_name
)
.
get
(
timeout
=
timeout
)
def
destroy
(
self
,
user
=
None
,
task_uuid
=
None
):
...
...
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