We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f620d commit 9b92012Copy full SHA for 9b92012
api/pkg/webhooks/manager.go
@@ -88,7 +88,7 @@ func (w *SimpleWebhookManager) InvokeWebhooks(
88
for _, client := range asyncClients {
89
go func(client WebhookClient) {
90
// Ignore the response from async webhooks
91
- if _, err := client.Invoke(ctx, originalPayload); err != nil {
+ if _, err := client.Invoke(context.Background(), originalPayload); err != nil {
92
return
93
}
94
}(client)
0 commit comments