-
Notifications
You must be signed in to change notification settings - Fork 5
EIM-112: Added the ping check for mirrors #271
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
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
3f2a379
EIM-112: Added the ping check for mirrors
alirana01 b3aeeb2
code cleanup and ai review comments
alirana01 ca8f09b
constant extracted for u32
alirana01 b1b1edc
Revert "constant extracted for u32"
alirana01 ba18d0d
fix(gui): Latency checks now dont stop the UI interactions
alirana01 204a0b3
review comments and moving some mirror latency code to settings.rs in…
alirana01 39f8af3
review comments and logic improvement
alirana01 b116408
mutex lock and minor format changes reverted
alirana01 353d4b0
code cleanup on UI
alirana01 2778d32
review comments
alirana01 a5a3fad
cleanup
alirana01 df70005
review comments
alirana01 5dc673c
added mirrors to app_state on ui launch
alirana01 154404d
rebase errors
alirana01 55f0771
imports fixed
alirana01 c638e05
fixing js and improving rust
alirana01 7538fa6
removing commented out code
alirana01 7eb7542
Fixing javascript code
alirana01 79261e8
rebase fixes
alirana01 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
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
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.
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.
is_simple_installation will always evaluate to false in this context. The current logic sets the flag to true in start_simple_setup, but start_simple_setup delegates to start_installation, which then sets it back to false. Since setup_tools is executed after this reset, the flag is never actually true, and the entire conditional flow dependent on is_simple_installation is effectively dead code.
This indicates a fundamental flaw in the implementation and strongly suggests the feature was not tested. Please revisit the logic, correct the control flow, and verify the behaviour before resubmitting.
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.
separate command added that will be called from gui avoiding this