I am storing objects in Google Cloud Storage through the Blobstore API. When it comes time to delete an object, I use:
key = blobstore.create_gs_key(gs_object_name)
blobstore.delete(key)
This deletes the object from Google Cloud Storage, but when I look at Blob Viewer in the App Engine Dashboard site it appears that entries still exist in the Blobstore for each of the objects. When I click on any of the orphans the preview section of the page shows: "Error: Server Error"
Should I delete them using another method?