Skip to content

Commit

Permalink
fix: update webhook cleaner sql
Browse files Browse the repository at this point in the history
Signed-off-by: DrowYue <[email protected]>
  • Loading branch information
DrowYue committed Aug 19, 2024
1 parent b46c4bc commit cf4b8af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Empty file removed all_pod
Empty file.
2 changes: 1 addition & 1 deletion pkg/webhook/dao/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (d *dao) ListWebhookLogs(ctx context.Context, query *q.Query,
case common.Orphaned:
stm = stm.Where("e.id is null")
case common.WebhookID:
stm = stm.Where("l.l.webhook_id = ?", v)
stm = stm.Where("l.webhook_id = ?", v)
case common.EventType:
stm = stm.Where("e.event_type = ?", v)
case common.Offset:
Expand Down

0 comments on commit cf4b8af

Please sign in to comment.