We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b24be9 commit 3670620Copy full SHA for 3670620
backend/pkg/exporter/db/db.go
@@ -2360,7 +2360,7 @@ func MarkRollingAsGenerated(rolling Rollings, last_epoch int64) error {
2360
if err != nil {
2361
return fmt.Errorf("error preparing batch: %w", err)
2362
}
2363
- if err := batch.Append(rolling, last_epoch, time.Now()); err != nil {
+ if err := batch.Append(string(rolling), last_epoch, time.Now()); err != nil {
2364
return fmt.Errorf("error appending row to batch: %w", err)
2365
2366
if err := batch.Send(); err != nil {
0 commit comments