Skip to content

Commit

Permalink
increase limit for "get payments" via grpc
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Otto committed Jun 7, 2024
1 parent 646c632 commit 890a80a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

@Component
public class GrpcPayments {
private static final int LIMIT = 1_000;
private static final int LIMIT = 5_000;

private final GrpcService grpcService;
private final Logger logger = LoggerFactory.getLogger(getClass());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
@ExtendWith(MockitoExtension.class)
class GrpcPaymentsTest {
private static final long ADD_INDEX_OFFSET = 123;
private static final int LIMIT = 1_000;
private static final int LIMIT = 5_000;
private static final String PAYMENT_REQUEST = "abc";

@InjectMocks
Expand Down

0 comments on commit 890a80a

Please sign in to comment.