Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.core
Commits
2899932a
Commit
2899932a
authored
Jul 02, 2020
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Plain Diff
slapgrid: try 3 times to upload archive to binary cache
See merge request
nexedi/slapos.core!185
parents
ad470c74
b6d10881
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
14 deletions
+18
-14
slapos/grid/SlapObject.py
slapos/grid/SlapObject.py
+18
-14
No files found.
slapos/grid/SlapObject.py
View file @
2899932a
...
@@ -337,20 +337,24 @@ class Software(object):
...
@@ -337,20 +337,24 @@ class Software(object):
tar
.
add
(
self
.
software_path
,
arcname
=
self
.
software_url_hash
)
tar
.
add
(
self
.
software_path
,
arcname
=
self
.
software_url_hash
)
finally
:
finally
:
tar
.
close
()
tar
.
close
()
self
.
logger
.
info
(
"Trying to upload archive of software release..."
)
for
i
in
range
(
3
):
upload_network_cached
(
self
.
logger
.
info
(
"Trying to upload archive of software release (try %d)..."
%
(
i
))
self
.
software_root
,
if
upload_network_cached
(
self
.
url
,
self
.
software_url_hash
,
self
.
software_root
,
self
.
upload_binary_cache_url
,
self
.
url
,
self
.
software_url_hash
,
self
.
upload_binary_dir_url
,
self
.
upload_binary_cache_url
,
tarpath
,
self
.
logger
,
self
.
upload_binary_dir_url
,
self
.
signature_private_key_file
,
tarpath
,
self
.
logger
,
self
.
shacache_ca_file
,
self
.
signature_private_key_file
,
self
.
shacache_cert_file
,
self
.
shacache_ca_file
,
self
.
shacache_key_file
,
self
.
shacache_cert_file
,
self
.
shadir_ca_file
,
self
.
shacache_key_file
,
self
.
shadir_cert_file
,
self
.
shadir_ca_file
,
self
.
shadir_key_file
)
self
.
shadir_cert_file
,
self
.
shadir_key_file
):
break
# let shacache process the upload before retrying
time
.
sleep
(
1800
)
def
destroy
(
self
):
def
destroy
(
self
):
"""Removes software release."""
"""Removes software release."""
...
...
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