-
Notifications
You must be signed in to change notification settings - Fork 31
Fix: Fail early when database cluster does not respond #711
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
Open
amotl
wants to merge
5
commits into
main
Choose a base branch
from
fail-on-connect
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+38
−20
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1262fe6
Error handling: Fail early when database cluster does not respond
amotl b74ce4b
Error handling: Only re-raise ConnectionError when all servers fail
amotl d22fde9
Error handling: Use JSON for bundling multiple ConnectionError instances
amotl 51ead0a
Dependencies: Update to verlib2>=0.3
amotl 891fc3c
Chore: Update project metadata to use SPDX license identifier
amotl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,10 @@ | |
# However, if you have executed another commercial license agreement | ||
# with Crate these terms will supersede the license and you may use the | ||
# software solely pursuant to the terms of the relevant commercial agreement. | ||
import json | ||
|
||
from verlib2 import Version | ||
from verlib2.packaging.version import InvalidVersion | ||
|
||
from .blob import BlobContainer | ||
from .cursor import Cursor | ||
|
@@ -197,14 +199,21 @@ def get_blob_container(self, container_name): | |
|
||
def _lowest_server_version(self): | ||
lowest = None | ||
server_count = len(self.client.active_servers) | ||
connection_errors = [] | ||
for server in self.client.active_servers: | ||
try: | ||
_, _, version = self.client.server_infos(server) | ||
version = Version(version) | ||
except (ValueError, ConnectionError): | ||
except ConnectionError as ex: | ||
connection_errors.append(ex) | ||
continue | ||
kneth marked this conversation as resolved.
Show resolved
Hide resolved
|
||
except (ValueError, InvalidVersion): | ||
continue | ||
if not lowest or version < lowest: | ||
lowest = version | ||
if connection_errors and len(connection_errors) == server_count: | ||
raise ConnectionError(json.dumps(list(map(str, connection_errors)))) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not just There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've elaborated about it here, but I am also not sure, that's why I am also asking about your opinion. |
||
return lowest or Version("0.0.0") | ||
|
||
def __repr__(self): | ||
|
This file contains hidden or 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
This file contains hidden or 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
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.
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.
There is no server at
http://127.0.0.1:4200
. This test case just didn't fail becauseconnect()
did not raise an exception up until now.Now, there is no longer a way to validate connecting to the default address per doctest file, because there is no server listening at
http://127.0.0.1:4200
. Because the core information is still viable, all what's left is pure prose, rephrased a bit.