Integrations tests fail if there are more than 1000 `osdu:wks:reference-data--Coordinate*:1.1.0` in the system
Hi,
While checking the AWS failures I noticed that the test_crs_catalog_v3.py
is using a basic "search" query to validate that all the records are found.
But the search
service has an hard limit of 1000 records.
So if you have more than 1000 records matching this osdu:wks:reference-data--Coordinate*:1.1.0
kind in the system the while not found
loop checking these will never exit successfully.
A fix is to use the query_by_cursor
API instead.