Skip to content

Commit

Permalink
Merge pull request #5532 from stellar/release-horizon-v22.0.1
Browse files Browse the repository at this point in the history
services/horizon: merge horizon v22.0.1 branch back into master
  • Loading branch information
tamirms authored Nov 14, 2024
2 parents 7137253 + 7940f88 commit f15a8e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions services/horizon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this
file. This project adheres to [Semantic Versioning](http://semver.org/).

## 22.0.1

### Fixed
- Fix the issue where the skip-txmeta flag is not being applied in `/transactions/{tx-id}` endpoint ([5523](https://github.com/stellar/go/pull/5523)).
- Fix `horizon_ingest_reap_lookup_tables_duration_seconds` metric which reports the total number of lookup table rows which were reaped ([5528](https://github.com/stellar/go/pull/5528)).

### Removed
- Removed defunct `init-genesis-state` command ([5504](https://github.com/stellar/go/pull/5504)).

## 22.0.0-rc2


Expand Down
1 change: 1 addition & 0 deletions services/horizon/internal/ingest/reap.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ func (r *lookupTableReaper) deleteOrphanedRows(ctx context.Context) error {
}
deleteDuration := time.Since(deleteStartTime)
totalDeleteDuration += deleteDuration
totalDeleted += rowsDeleted

r.rowsReapedByLookupTable.With(prometheus.Labels{"table": table}).
Observe(float64(rowsDeleted))
Expand Down

0 comments on commit f15a8e0

Please sign in to comment.