# File lib/couch_potato/database.rb, line 96
    def destroy_document(document)
      begin
        destroy_document_without_conflict_handling document
      rescue CouchRest::Conflict
        retry if document = document.reload
      end
    end