Hi,
I am sending a list of requests to statistical API which executes them in parallel using multiple threads as described here:
Multiple-requests-for-a-collection-of-geometries
Everything works fine however if for some reason one of the requests is a bad request (for example the area is too large) it throws a DownloadFailedException for the entire process.
Is there any way to implement it so that bad requests will return status:400 however I would still get responses for all the other requests?