You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: remove unused DestinationID from RetrieveEventRequest (#679)
* refactor: remove unused DestinationID from RetrieveEventRequest
After iterations of access patterns, the current version doesn't require
DestinationID in this operation. Events are destination-agnostic - use
ListAttempt with DestinationIDs filter for destination-scoped queries.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* refactor: query events table in RetrieveEvent
RetrieveEvent now queries the events table directly instead of the
attempts table.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
* fix: use QueryRow in chlogstore retrieve functions to prevent silent errors
RetrieveEvent and RetrieveAttempt used Query + rows.Next() without
checking rows.Err(), causing ClickHouse query errors to be silently
treated as "not found" (404) instead of surfacing as errors (500).
Switch to QueryRow which handles this correctly via sql.ErrNoRows.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: align API response structs with internal models
---------
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments