fix(store/v2): flaky TestDenomMetadata integration test. (#23184)

Co-authored-by: Marko <marko@baricevic.me>
Co-authored-by: Alex | Skip <alex@skip.money>
This commit is contained in:
Tuan Tran 2025-01-07 23:36:19 +07:00 committed by GitHub
parent c1192daf56
commit ead1b1c9df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,6 +228,9 @@ func (itr *pebbleDBIterator) Error() error {
}
func (itr *pebbleDBIterator) Close() error {
if itr.source == nil {
return nil
}
err := itr.source.Close()
itr.source = nil
itr.valid = false