ckan / ckanext-spatial

Geospatial extension for CKAN
http://docs.ckan.org/projects/ckanext-spatial
126 stars 193 forks source link

Fix delete in CSW. Closes #103. #104

Closed etj closed 9 years ago

etj commented 9 years ago

Records deleted on the remote CSW server are not deleted locally. The ids of the records stored locally but no longer on the remote server are put in the fetch list, but the fetch stage will fail because the record is not found on the CSW server. The transaction object will be marked as failed, and the record as not current.

The fix just bypasses the fetch stage if the record has to be deleted.

davidread commented 9 years ago

Seems reasonable to me.

amercader commented 9 years ago

Thanks for the patch @etj