mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-07 13:07:22 +00:00
fix: remove cursor from tcr pagination (#23214)
This commit is contained in:
parent
1e48241f51
commit
4537a54717
@ -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