Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
comms
Manage
Activity
Members
Labels
Automate
Agent sessions
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
comms
Commits
871d560e
Commit
871d560e
authored
Sep 8, 2020
by
Josh Brooks
Browse files
Options
Downloads
Patches
Plain Diff
Temp: Attempt to identify bug in server tests
parent
83a0da7a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
node/handler.go
+4
-1
4 additions, 1 deletion
node/handler.go
with
4 additions
and
1 deletion
node/handler.go
+
4
−
1
View file @
871d560e
...
...
@@ -20,6 +20,7 @@ import (
"google.golang.org/grpc/reflection"
"net"
"runtime/debug"
"strconv"
)
// Server object used to implement endpoints and top-level comms functionality
...
...
@@ -51,7 +52,9 @@ func StartNode(id *id.ID, localServer string, handler Handler,
jww
.
WARN
.
Printf
(
"Unable to start consensus node"
)
return
}
interconnect
.
StartCMixInterconnect
(
id
,
port
,
handler
,
certPEMblock
,
keyPEMblock
)
newPort
,
err
:=
strconv
.
Atoi
(
port
)
newPort
++
interconnect
.
StartCMixInterconnect
(
id
,
string
(
newPort
),
handler
,
certPEMblock
,
keyPEMblock
)
}()
go
func
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment