fix: remove cursor from tcr pagination (#23214)

(cherry picked from commit 4537a54717e166cacd0cab33016ad65f613eb3d0)
This commit is contained in:
Teddy 2025-09-04 16:46:15 +02:00 committed by OpenMetadata Release Bot
parent 8248246111
commit b4ba346d85

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(