Skip to content

Commit

Permalink
increase wait between refreshs
Browse files Browse the repository at this point in the history
  • Loading branch information
xzel23 committed Dec 24, 2024
1 parent a3371d2 commit ccca1b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
final class LogEntriesObservableList extends ObservableListBase<LogEntry> implements LogBuffer.LogBufferListener {
private static final Logger LOG = LogManager.getLogger(LogEntriesObservableList.class);

private static final long REST_TIME_IN_MS = 10;
private static final long REST_TIME_IN_MS = 50;

private volatile List<LogEntry> data = Collections.emptyList();
private final AtomicLong totalAdded = new AtomicLong(0);
Expand Down

0 comments on commit ccca1b4

Please sign in to comment.