Fix possible data race on tests (#30093) (#30108)

backport #30093
pull/30120/head
Lunny Xiao 8 months ago committed by GitHub
parent a0f89ba8c7
commit 09a5067c0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      services/webhook/deliver_test.go

@ -105,7 +105,6 @@ func TestWebhookDeliverAuthorizationHeader(t *testing.T) {
err := hook.SetHeaderAuthorization("Bearer s3cr3t-t0ken")
assert.NoError(t, err)
assert.NoError(t, webhook_model.CreateWebhook(db.DefaultContext, hook))
db.GetEngine(db.DefaultContext).NoAutoTime().DB().Logger.ShowSQL(true)
hookTask := &webhook_model.HookTask{HookID: hook.ID, EventType: webhook_module.HookEventPush, Payloader: &api.PushPayload{}}

Loading…
Cancel
Save