-
Notifications
You must be signed in to change notification settings - Fork 32
GH-826 zero-hop as default neighborhood-mode review addressed #749
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
czarte
wants to merge
8
commits into
master
Choose a base branch
from
GH-826-review
base: master
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.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
820eeb5
Revert "Breaking change to remove RRID from CORES packages (#740)"
czarte 1991c39
zero-hop as defailt neighborhood-mode
czarte c187458
Merge branch 'master' into GH-826
czarte 040e2b5
review addressed
czarte 69bfc4c
addressed review 2 comments
czarte 9bd5ffa
fixing integration tests
czarte e8bfb0f
remove probably unused parameters from ui gateway tests
czarte 221b988
formatting
czarte 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -986,7 +986,7 @@ impl ValueRetriever for NeighborhoodMode { | |
| _persistent_config: &dyn PersistentConfiguration, | ||
| _db_password_opt: &Option<String>, | ||
| ) -> Option<(String, UiSetupResponseValueStatus)> { | ||
| Some(("standard".to_string(), Default)) | ||
| Some(("zero-hop".to_string(), Default)) | ||
| } | ||
|
|
||
| fn is_required(&self, _params: &SetupCluster) -> bool { | ||
|
|
@@ -1402,6 +1402,7 @@ mod tests { | |
| ("data-directory", data_dir.to_str().unwrap()), | ||
| ("db-password", "password"), | ||
| ("ip", "4.3.2.1"), | ||
| ("neighborhood-mode", "standard"), | ||
| ] | ||
| .into_iter() | ||
| .map(|(name, value)| UiSetupRequestValue::new(name, value)) | ||
|
|
@@ -1448,7 +1449,7 @@ mod tests { | |
| ("log-level", "warn", Default), | ||
| ("mapping-protocol", "", Blank), | ||
| ("min-hops", &DEFAULT_MIN_HOPS.to_string(), Default), | ||
| ("neighborhood-mode", "standard", Default), | ||
| ("neighborhood-mode", "standard", Set), | ||
| ( | ||
| "neighbors", | ||
| "masq://eth-mainnet:[email protected]:1234,masq://eth-mainnet:[email protected]:5678", | ||
|
|
@@ -2362,7 +2363,7 @@ mod tests { | |
| Default, | ||
| ), | ||
| ]); | ||
| let incoming_setup = vec![("ip", "1.2.3.4")] | ||
| let incoming_setup = vec![("ip", "1.2.3.4"), ("neighborhood-mode", "standard")] | ||
| .into_iter() | ||
| .map(|(name, value)| UiSetupRequestValue::new(name, value)) | ||
| .collect_vec(); | ||
|
|
@@ -2652,6 +2653,7 @@ mod tests { | |
| ), | ||
| UiSetupRequestValue::new("blockchain-service-url", "https://booga.com"), | ||
| UiSetupRequestValue::new("ip", "1.2.3.4"), | ||
| UiSetupRequestValue::new("neighborhood-mode", "standard"), | ||
| UiSetupRequestValue::clear("chain"), | ||
| ], | ||
| ) | ||
|
|
@@ -3287,7 +3289,7 @@ mod tests { | |
| &None, | ||
| ); | ||
|
|
||
| assert_eq!(result, Some(("standard".to_string(), Default))) | ||
| assert_eq!(result, Some(("zero-hop".to_string(), Default))) | ||
| } | ||
|
|
||
| #[test] | ||
|
|
||
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.