Skip to content

Commit

Permalink
fix(xtrellis): launch client without failure
Browse files Browse the repository at this point in the history
  • Loading branch information
xendarboh committed Sep 21, 2023
1 parent cfe108c commit 07c08f9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions cmd/xtrellis/xtrellis.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,14 @@ func LaunchClient(args Args) {
}

clientRunner := client.NewClientRunner(servers, groups)
err = clientRunner.Connect()
if err != nil {
log.Fatalf("Could not make clients %v", err)
}

// This fails @ network/rpc_call.go callee.HandleSignedMessageStream
/*
err = clientRunner.Connect()
if err != nil {
log.Fatalf("Could not make clients %v", err)
}
*/

network.RunServer(nil, clientRunner, clients, addr)
}
Expand Down

0 comments on commit 07c08f9

Please sign in to comment.