Skip to content

Commit

Permalink
Bumped max query size
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Jun 11, 2024
1 parent 117d075 commit e14d0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jasper/repository/filter/Query.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface Query {
String GROUP3S = GROUP3 + "(?:[|:]" + GROUP3 + ")*";
String REGEX = GROUP3S;

int QUERY_LEN = 1024;
int QUERY_LEN = 4096;
int SEARCH_LEN = 512;

String getQuery();
Expand Down

0 comments on commit e14d0e1

Please sign in to comment.