Skip to content

Commit

Permalink
fix: remove size for int
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaDel03 committed Jan 31, 2025
1 parent d8d662a commit c4b532f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ GetTermsInsDTO getTermsByChunkIns(
String id,
@PathVariable
@Parameter(description = "Indice chunk richiesto (eg. 0, 1, 2...)")
@Size(min = 0, max = 10000000)
@Min(0)
@Max(Integer.MAX_VALUE)
int idx
) throws OutOfRangeException, DocumentNotFoundException, DataIntegrityException, OperationException;

Expand Down

0 comments on commit c4b532f

Please sign in to comment.