示例#1
0
    def delete(self, id):
        """Delete the specified Execution."""
        LOG.info("Delete resource.", resource={'type': self.type, 'id': id})

        return db_api.delete_execution(id)
示例#2
0
    def delete(self, id):
        """Delete the specified Execution."""
        LOG.info("Delete execution [id=%s]", id)

        return db_api.delete_execution(id)