Skip to content

Commit

Permalink
Remove old replay outputs when reading logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Nov 2, 2024
1 parent 0270217 commit eb0017e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,10 @@ record = iterator.next();

} else if (timestamp != null && record.getTimestamp() == timestamp) {
entry = entry.substring(1); // Remove leading slash
if (entry.startsWith("ReplayOutputs")) {
// Don't retrieve old replay outputs
continue;
}
String customType = entryCustomTypes.get(record.getEntry());
switch (entryTypes.get(record.getEntry())) {
case Raw:
Expand Down

0 comments on commit eb0017e

Please sign in to comment.