We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4c36d0 commit c9b574aCopy full SHA for c9b574a
go/logic/coordinator_test.go
@@ -56,7 +56,7 @@ func (suite *CoordinatorTestSuite) SetupSuite() {
56
57
suite.db = db
58
suite.concurrentTransactions = 100
59
- suite.transactionsPerWorker = 100
+ suite.transactionsPerWorker = 1
60
61
db.SetMaxOpenConns(suite.concurrentTransactions)
62
}
@@ -144,7 +144,7 @@ func (suite *CoordinatorTestSuite) TestApplyDML() {
144
err = applier.CreateChangelogTable()
145
suite.Require().NoError(err)
146
147
- g, ctx := errgroup.WithContext(ctx)
+ g, _ := errgroup.WithContext(ctx)
148
for range suite.concurrentTransactions {
149
g.Go(func() error {
150
for range suite.transactionsPerWorker {
0 commit comments