fix: remove cursor from tcr pagination (#23214)

This commit is contained in:
Teddy 2025-09-04 16:46:15 +02:00 committed by GitHub
parent 1e48241f51
commit 4537a54717
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,8 +74,7 @@ public class TestCaseResultRepository extends EntityTimeSeriesRepository<TestCas
endTs,
EntityTimeSeriesDAO.OrderBy.DESC),
TestCaseResult.class);
return new ResultList<>(
testCaseResults, String.valueOf(startTs), String.valueOf(endTs), testCaseResults.size());
return new ResultList<>(testCaseResults, null, null, testCaseResults.size());
}
public Response addTestCaseResult(