Skip to content

Commit

Permalink
fix: discards infos column values
Browse files Browse the repository at this point in the history
  • Loading branch information
achettyiitr committed Dec 3, 2024
1 parent def8e59 commit 44353b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func convertDiscardedInfosToRows(discardInfos []discardInfo) []model.Row {

return model.Row{
"column_name": info.colName,
"column_value": info.eventData[info.colName],
"column_value": fmt.Sprintf("%v", info.eventData[info.colName]),
"reason": info.reason,
"received_at": receivedAt,
"row_id": id,
Expand Down

0 comments on commit 44353b1

Please sign in to comment.