You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
up until a few months ago when you hit the API for a distribution it would give you test count info. Now it seems to never do so. You can replicate with the Client:
% perl -e 'use MetaCPAN::Client;warn MetaCPAN::Client->new->release("Catalyst-Runtime")->tests'
Warning: something's wrong at -e line 1.
Previously that returns the count of test cases. This isn't an issue with the client, if you curl the data is missing as well:
up until a few months ago when you hit the API for a distribution it would give you test count info. Now it seems to never do so. You can replicate with the Client:
Previously that returns the count of test cases. This isn't an issue with the client, if you curl the data is missing as well:
curl -s https://fastapi.metacpan.org/v1/release/Catalyst-Runtime
You'd get a JSON response with a top level field called 'tests', but it's not there anymore.
I'm not expert in elastic search but looking thru the code it sorta seems like we are defining that field
metacpan-api/es/release/mapping.json
Line 245 in a913bdf
However not sure where the data is supposed to come from. So note sure if this is a problem with the ES index or the data source
The text was updated successfully, but these errors were encountered: