Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!1066
Retry the validation as well as the fetch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Retry the validation as well as the fetch
product-fetcher-retry-file-validation
into
main
Overview
0
Commits
2
Pipelines
2
Changes
6
Merged
Daniel Lyons
requested to merge
product-fetcher-retry-file-validation
into
main
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
6
Expand
0
0
Merge request reports
Compare
main
version 1
d283a581
2 years ago
main (base)
and
latest version
latest version
88c9948f
2 commits,
2 years ago
version 1
d283a581
1 commit,
2 years ago
6 files
+
130
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
apps/cli/executables/pexable/productfetcher/productfetcher/exceptions.py
+
2
−
2
Options
@@ -27,7 +27,7 @@ import traceback
from
pathlib
import
Path
class
FetchError
(
Exception
):
class
FetchError
(
Base
Exception
):
"""
Some sort of problem has occurred, and the program must end.
"""
@@ -54,7 +54,7 @@ class RetryableFetchError(FetchError):
super
().
terminate_fetch
()
class
FileValidationFault
(
FetchError
):
class
FileValidationFault
(
Retryable
FetchError
):
"""
A file has failed to validate for some reason. This is not a retryable error.
"""
Loading