-
Notifications
You must be signed in to change notification settings - Fork 11
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
Prevent app from breaking when nodes are not reachable #479
Merged
jeandemeusy
merged 8 commits into
main
from
jean/prevent-app-from-breaking-when-node-not-reachable
Mar 5, 2024
Merged
Prevent app from breaking when nodes are not reachable #479
jeandemeusy
merged 8 commits into
main
from
jean/prevent-app-from-breaking-when-node-not-reachable
Mar 5, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closed
Teebor-Choka
approved these changes
Mar 5, 2024
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.
Looks ok, more tests would be appreciated though.
Co-authored-by: Tibor <[email protected]>
jeandemeusy
added a commit
that referenced
this pull request
Apr 15, 2024
* more logs for api, removed color, added back timestamp * Migrate hoprd nodes to GCP (#477) * Migrate hoprd nodes to GCP * remove parameter * apply changes * scale up * bump helm chart * upgrade helm chart version * Prevent app from breaking when nodes are not reachable (#479) * added timeout on api calls * ensured all api calls are behind "connectguard" decorator * fix timeout * Catching any other exception from API * func renamed * node address access thread safe * ensure timeout it used on any http post request * Update ct-app/core/core.py Co-authored-by: Tibor <[email protected]> --------- Co-authored-by: Tibor <[email protected]> * Upgrade to 2.0.8 * scale down * scale first * scale up * scale up * fix (#481) * fix (#482) * Jean/kwargs and timeout mismatch in api (#483) * fix * timeout hardcoded * Use flake nix, only devShell (#485) * setup nix, fixed the list of parameters script * ci using nix ? * unified requirements files * fix after merge * adapt to new waitlist * update requirements for waitlist update --------- Co-authored-by: ausias-armesto <[email protected]> Co-authored-by: Tibor <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
A bug in the code that needs to be fixed
component:core
component:hoprd-api
Anything releated to changes of the hoprd-python-api
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
With this PR, any API call is wrapped within a timeout-handler, so that the call cancels should it take too long (> 60s). Also ensured that all api calls are protected by the
@connectguard
decorator, which prevents an asyncio task to run if the node is not reachable.Solves #480