Skip to content
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

Disabled extending connection to peers for test purposes #1881

Merged
merged 3 commits into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,10 @@ constructor(
// Extend the current connection by connecting to the peers of the main server
// The greetLao will also be sent by the other servers, so the message sender
// should handle this, avoiding to connect twice to the same server
context.messageSender.extendConnection(greetLao.peers)
// TODO: Remove the comment when testing for backend is finished ! Maxime @Kaz | May 2024
// Also, I realised removing this line that no tests are actually testing this part of the
// code...
// context.messageSender.extendConnection(greetLao.peers)
}

companion object {
Expand Down
Loading