mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 02:53:40 +00:00
Fix output
This commit is contained in:
parent
2168c13d67
commit
e665490e58
1 changed files with 2 additions and 2 deletions
|
@ -114,10 +114,10 @@ func UpStateBlocksRefactor(tx *sql.Tx) error {
|
|||
return fmt.Errorf("tx.Query: %w", err)
|
||||
}
|
||||
|
||||
logrus.Warnf("Rewriting snapshots %d-%d of %d...", batchoffset, batchoffset+batchsize, snapshotcount)
|
||||
var snapshots []stateBlockData
|
||||
|
||||
for snapshotrows.Next() {
|
||||
logrus.Warnf("Rewriting snapshots %d-%d of %d...", batchoffset, batchoffset+batchsize, snapshotcount)
|
||||
var snapshot stateBlockData
|
||||
var eventsarray pq.Int64Array
|
||||
if err = snapshotrows.Scan(&snapshot.StateSnapshotNID, &snapshot.RoomNID, &snapshot.StateBlockNID, &eventsarray); err != nil {
|
||||
|
@ -178,7 +178,7 @@ func UpStateBlocksRefactor(tx *sql.Tx) error {
|
|||
return fmt.Errorf("tx.Exec (update rooms): %w", err)
|
||||
}
|
||||
|
||||
fmt.Println("Rewrote snapshot", snapshot, "to", newsnapshot)
|
||||
fmt.Println("Rewrote snapshot", snapshot.StateSnapshotNID, "to", newsnapshot)
|
||||
newblocks = newblocks[:0]
|
||||
lastsnapshot = snapshot.StateSnapshotNID
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue