Skip to content

Commit fe8a299

Browse files
committed
fix: expose node 0's support console port
1 parent 930d665 commit fe8a299

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

e2e/cluster/cmx/cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func NewNodes(in *ClusterInput) ([]Node, error) {
125125
return nil, fmt.Errorf("copy scripts to node %s: %v", nodes[i].ID, err)
126126
}
127127

128-
if in.Nodes == 1 {
128+
if i == 0 {
129129
in.T.Logf("exposing port 30003 on node %s", nodes[i].ID)
130130
hostname, err := exposePort(nodes[i], "30003")
131131
if err != nil {

0 commit comments

Comments
 (0)