Skip to content

Commit

Permalink
увеличил лимит на число уведомлений
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcom committed Oct 26, 2024
1 parent 0f3e2d0 commit a3d87e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ru/org/linux/spring/StatUpdater.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 1998-2022 Linux.org.ru
* Copyright 1998-2024 Linux.org.ru
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Expand Down Expand Up @@ -28,7 +28,7 @@
@Component
public class StatUpdater {
private static final Logger logger = LoggerFactory.getLogger(StatUpdater.class);
public static final int MAX_EVENTS = 2000;
public static final int MAX_EVENTS = 4000;

private static final int FIVE_MINS = 5 * 60 * 1000;
private static final int TEN_MINS = 10 * 60 * 1000;
Expand Down

0 comments on commit a3d87e0

Please sign in to comment.