mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-20 05:15:08 +00:00
fix: remove cursor from tcr pagination (#23214)
(cherry picked from commit 4537a54717e166cacd0cab33016ad65f613eb3d0)
This commit is contained in:
parent
8248246111
commit
b4ba346d85
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user