Skip to content

Commit

Permalink
asset DB is open before createStreamKeyRaw
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Fukushima <[email protected]>
  • Loading branch information
gfukushima committed Jan 20, 2025
1 parent d56ce97 commit 342718e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ public Stream<ColumnEntry<Bytes, Bytes>> streamRaw(final KvStoreColumn<?, ?> col
@Override
@MustBeClosed
public Stream<Bytes> streamKeysRaw(final KvStoreColumn<?, ?> column) {
assertOpen();
return createStreamKeyRaw(column, RocksIterator::seekToFirst, key -> true).map(Bytes::wrap);
}

Expand Down

0 comments on commit 342718e

Please sign in to comment.