Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
S1Tiling
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s1-tiling
S1Tiling
Merge requests
!114
Resolve "Download hangs on corrupted SAFE"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Download hangs on corrupted SAFE"
166-download-hangs-on-corrupted-safe
into
release-1.1.0
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Luc Hermitte
requested to merge
166-download-hangs-on-corrupted-safe
into
release-1.1.0
6 months ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#166
0
0
Merge request reports
Compare
release-1.1.0
version 1
e469ce0a
6 months ago
release-1.1.0 (base)
and
latest version
latest version
e469ce0a
1 commit,
6 months ago
version 1
e469ce0a
1 commit,
6 months ago
1 file
+
2
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
s1tiling/libs/exceptions.py
+
2
−
1
Options
@@ -69,11 +69,12 @@ class CorruptedDataSAFEError(Error):
f
"
Product
{
product
!r}
appears to be corrupted (
{
extra
}
).
\n
Please remove the raw data for
{
product
!r}
SAFE file.
"
,
*
args
,
**
kwargs
)
self
.
product
=
product
self
.
details
=
details
def
__reduce__
(
self
):
# __reduce__ is required as this error will be pickled from subprocess
# when transported in the :class:`Outcome` object.
return
(
CorruptedDataSAFEError
,
(
self
.
product
,
))
return
(
CorruptedDataSAFEError
,
(
self
.
product
,
self
.
details
,
))
class
DownloadS1FileError
(
Error
):
Loading