From 52c61280cf161a52321d5d003d6cae331f31fe3c Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Wed, 7 Jan 2009 01:50:53 +0000 Subject: [PATCH] change client to use (type, hrn) instead of record in remove calls --- util/geniclient.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/util/geniclient.py b/util/geniclient.py index accf658a..29f832bb 100644 --- a/util/geniclient.py +++ b/util/geniclient.py @@ -197,13 +197,11 @@ class GeniClient(): # then the PLC records will also be removed. # # @param cred credential object specifying rights of the caller - # @param record record to register. The only relevant - # fields of the record are 'name' and 'type', which are used to lookup - # the current copy of the record in the Geni database, to make sure - # that the appopriate record is removed. + # @param type + # @param hrn - def remove(self, cred, record): - result = self.server.remove(cred.save_to_string(save_parents=True), record.as_dict()) + def remove(self, cred, type, hrn): + result = self.server.remove(cred.save_to_string(save_parents=True), type, hrn) return result ## -- 2.43.0