Gjallarhorn: Render pool should ignore playback segments which are empty.

This commit is contained in:
Kenneth Endfinger
2022-01-08 15:28:41 -05:00
parent 41547f2e14
commit 0a96435669

View File

@ -59,6 +59,9 @@ class BlockMapRenderPool<T>(
val sliced = changelog.slice(slice)
val tracker = BlockLogTracker(blockTrackMode)
tracker.replay(sliced)
if (tracker.isEmpty()) {
return
}
trackers[slice] = tracker
}