-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raise URLNotFoundError instead of infinite retry #288
Conversation
Codecov ReportAttention: Patch coverage is
@@ Coverage Diff @@
## stable #288 +/- ##
==========================================
+ Coverage 70.35% 70.38% +0.02%
==========================================
Files 81 81
Lines 7510 7522 +12
Branches 1465 1467 +2
==========================================
+ Hits 5284 5294 +10
- Misses 1842 1844 +2
Partials 384 384
Flags with carried forward coverage won't be shown. Click here to find out more.
|
8028a02
to
3f0b603
Compare
3f0b603
to
de43a7b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so today we're retry indefinitely ?
@@ -181,6 +181,6 @@ def generate_infrahubctl(context: Context) -> None: | |||
|
|||
|
|||
@task(name="generate-sdk") | |||
def generate_python_sdk(context: Context) -> None: | |||
def generate_python_sdk(context: Context) -> None: # noqa: ARG001 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove context if we don't use it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems to be required by invoke
tasks
If we delete a branch while a task in running on this branch and triggers this path, typically |
9b7ff87
to
fd67def
Compare
Fixes #5800.