diff --git a/api/pkg/webhooks/manager.go b/api/pkg/webhooks/manager.go index d49dfa5..bc19ff5 100644 --- a/api/pkg/webhooks/manager.go +++ b/api/pkg/webhooks/manager.go @@ -88,7 +88,7 @@ func (w *SimpleWebhookManager) InvokeWebhooks( for _, client := range asyncClients { go func(client WebhookClient) { // Ignore the response from async webhooks - if _, err := client.Invoke(ctx, originalPayload); err != nil { + if _, err := client.Invoke(context.Background(), originalPayload); err != nil { return } }(client)