Skip to content

Commit

Permalink
Merge pull request scouter-project#468 from scouter-project/develop
Browse files Browse the repository at this point in the history
[webapp] counter search limit to 6 hours from 1 hour.
  • Loading branch information
gunlee01 authored May 13, 2018
2 parents 5a5fef9 + 1003a7c commit df35023
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
@Setter
@ToString
public class CounterRequest {
private final long limitRangeSec = 60 * 60; //1 hour
private final long limitRangeSec = 6 * 60 * 60; //6 hour

private int serverId;

Expand Down

0 comments on commit df35023

Please sign in to comment.