Skip to content

Commit

Permalink
CB-6271 fix insecure default configuration set timeout to 2 mins
Browse files Browse the repository at this point in the history
  • Loading branch information
HocKu7 committed Mar 11, 2025
1 parent ac33dac commit 5809944
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public class ServerConfigurationTimeLimitFilter implements Filter {
private static final Log log = Log.getLog(ServerConfigurationTimeLimitFilter.class);

private static final int MINUTES_OF_INACTION_BEFORE_DISABLING_REQUEST_PROCESSING = 60;
private static final int MINUTES_OF_INACTION_BEFORE_DISABLING_REQUEST_PROCESSING = 2;
private final CBApplication<?> application;

public ServerConfigurationTimeLimitFilter(CBApplication<?> application) {
Expand Down

0 comments on commit 5809944

Please sign in to comment.