diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-04-26 02:03:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 20:03:01 +0200 |
commit | 7c164d5a918c2461bbdf2a1ef79a20908c3259be (patch) | |
tree | ca46ea235e10fc43d081cd375df953e021390f0f /routers/api/v1/repo | |
parent | 257cea654cf1fb592fdb5eacc9c1d5a97611a3f1 (diff) | |
download | gitea-7c164d5a918c2461bbdf2a1ef79a20908c3259be.tar.gz gitea-7c164d5a918c2461bbdf2a1ef79a20908c3259be.zip |
Use queue instead of memory queue in webhook send service (#19390)
Diffstat (limited to 'routers/api/v1/repo')
-rw-r--r-- | routers/api/v1/repo/main_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/api/v1/repo/main_test.go b/routers/api/v1/repo/main_test.go index 19e524d014..1f91a24937 100644 --- a/routers/api/v1/repo/main_test.go +++ b/routers/api/v1/repo/main_test.go @@ -9,10 +9,15 @@ import ( "testing" "code.gitea.io/gitea/models/unittest" + "code.gitea.io/gitea/modules/setting" + webhook_service "code.gitea.io/gitea/services/webhook" ) func TestMain(m *testing.M) { + setting.LoadForTest() + setting.NewQueueService() unittest.MainTest(m, &unittest.TestOptions{ GiteaRootPath: filepath.Join("..", "..", "..", ".."), + SetUp: webhook_service.Init, }) } |