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

[Observability] Add claim relays counter #644

Merged
merged 15 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from 9 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
6 changes: 3 additions & 3 deletions load-testing/tests/relays_stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ func (s *relaysSuite) MoreActorsAreStakedAsFollows(table gocuke.DataTable) {
// Fund all the provisioned suppliers and gateways since their addresses are
// known and they are not created on the fly, while funding only the initially
// created applications.
fundedSuppliers, fundedGateways, fundedApplications := s.sendFundAvailableActorsTx(plans)
fundedSuppliers, fundedGateways, fundedApplications := s.sendFundAvailableActorsTx(s.plans)
// Funding messages are sent in a single transaction by the funding account,
// only one transaction is expected to be committed.
txResults := s.waitForTxsToBeCommitted()
Expand Down Expand Up @@ -439,7 +439,7 @@ func (s *relaysSuite) MoreActorsAreStakedAsFollows(table gocuke.DataTable) {
// not incrementally staked, but are already staked and delegated to, add all
// of them to the list of active gateways at the beginning of the test.
if !s.isEphemeralChain {
gateways = s.populateWithKnownGateways(plans)
gateways = s.populateWithKnownGateways(s.plans)
}

// Delegate the initial applications to the initial gateways
Expand Down Expand Up @@ -471,7 +471,7 @@ func (s *relaysSuite) MoreActorsAreStakedAsFollows(table gocuke.DataTable) {
stakingSuppliersAndGatewaysObs := channel.Map(
s.ctx,
s.sessionInfoObs,
s.mapSessionInfoWhenStakingNewSuppliersAndGatewaysFn(plans),
s.mapSessionInfoWhenStakingNewSuppliersAndGatewaysFn(s.plans),
)

// stakedAndDelegatingObs notifies when staking and delegation transactions are sent.
Expand Down
Loading
Loading