def delete(self, id): """Delete the specified Execution.""" LOG.info("Delete resource.", resource={'type': self.type, 'id': id}) return db_api.delete_execution(id)
def delete(self, id): """Delete the specified Execution.""" LOG.info("Delete execution [id=%s]", id) return db_api.delete_execution(id)