Skip to content

Commit 96f3e76

Browse files
Update internal/events/webhooks/webhooks.go
Co-authored-by: Nicko Guyer <[email protected]> Signed-off-by: Peter Broadhurst <[email protected]>
1 parent 65b24c4 commit 96f3e76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/events/webhooks/webhooks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func (wh *WebHooks) attemptRequest(sub *core.Subscription, event *core.EventDeli
229229
log.L(wh.ctx).Debugf("Webhook-> %s %s event %s on subscription %s", req.method, req.url, event.ID, sub.ID)
230230
resp, err := req.r.Execute(req.method, req.url)
231231
if err != nil {
232-
log.L(wh.ctx).Errorf("Webhook<-! %s %s event %s on subscription %s failed: %s", req.method, req.url, event.ID, sub.ID, err)
232+
log.L(wh.ctx).Errorf("Webhook<- %s %s event %s on subscription %s failed: %s", req.method, req.url, event.ID, sub.ID, err)
233233
return nil, nil, err
234234
}
235235
defer func() { _ = resp.RawBody().Close() }()

0 commit comments

Comments
 (0)