Skip to content

Commit

Permalink
[backend] pass agent active threshold to 1h (#2234)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumejparis authored Jan 17, 2025
1 parent a1da5af commit 3217cd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@EntityListeners(ModelBaseListener.class)
public class Agent implements Base {

public static final int ACTIVE_THRESHOLD = 180000; // 180 000 ms = 3 minutes
public static final int ACTIVE_THRESHOLD = 3600000; // 3 600 000 ms = 1 hour

public static final String ADMIN_SYSTEM_WINDOWS = "nt authority\\system";
public static final String ADMIN_SYSTEM_UNIX = "root";
Expand Down

0 comments on commit 3217cd0

Please sign in to comment.