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
In the code we have
# Get dataset metainfo
meta_url = urljoin(ckan_server, 'api/action/dataset_show?id=' + dataset_id)
which generate in ckan log [ckan.controllers.api] Can't find logic function: dataset_show
it should be
meta_url = urljoin(ckan_server, 'api/action/package_show?id=' + dataset_id)
tested and seems working !!!
The text was updated successfully, but these errors were encountered:
In the code we have
# Get dataset metainfo
meta_url = urljoin(ckan_server, 'api/action/dataset_show?id=' + dataset_id)
which generate in ckan log [ckan.controllers.api] Can't find logic function: dataset_show
it should be
meta_url = urljoin(ckan_server, 'api/action/package_show?id=' + dataset_id)
tested and seems working !!!
The text was updated successfully, but these errors were encountered: