diff options
author | 2023-11-14 15:57:25 +0100 | |
---|---|---|
committer | 2023-11-14 15:57:25 +0100 | |
commit | 4ee436e98a3351d9568c4a018bd2de34c218e9a6 (patch) | |
tree | 4b919150266fb327805f78663e9e705179598a7b /internal/processing/account/account_test.go | |
parent | [bugfix] Update poll delete/update db queries (#2361) (diff) | |
download | gotosocial-4ee436e98a3351d9568c4a018bd2de34c218e9a6.tar.xz |
[bugfix] process account delete side effects in serial, not in parallel (#2360)
* [bugfix] process account delete side effects in serial, not in parallel
* StartWorkers / StartNoopWorkers for tests
* undo testrig trace logging
* log errors instead of immediately returning
Diffstat (limited to 'internal/processing/account/account_test.go')
-rw-r--r-- | internal/processing/account/account_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/account/account_test.go b/internal/processing/account/account_test.go index 7f259815a..d43b4c937 100644 --- a/internal/processing/account/account_test.go +++ b/internal/processing/account/account_test.go @@ -81,7 +81,7 @@ func (suite *AccountStandardTestSuite) SetupSuite() { func (suite *AccountStandardTestSuite) SetupTest() { suite.state.Caches.Init() - testrig.StartWorkers(&suite.state) + testrig.StartNoopWorkers(&suite.state) testrig.InitTestConfig() testrig.InitTestLog() |