Skip to content

Commit

Permalink
fix: use fullnodes (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
acha-bill authored Oct 22, 2024
1 parent 63822b6 commit 8dfaa78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/check/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
return err
}

sortedNodes := cluster.NodeNames()
sortedNodes := cluster.FullNodeNames()
node := sortedNodes[0]

client := clients[node]
Expand Down
2 changes: 1 addition & 1 deletion pkg/check/postage/postage.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (c *Check) Run(ctx context.Context, cluster orchestration.Cluster, opts int
return err
}

sortedNodes := cluster.NodeNames()
sortedNodes := cluster.FullNodeNames()
node := sortedNodes[0]

client := clients[node]
Expand Down

0 comments on commit 8dfaa78

Please sign in to comment.