From: Scott Baker Date: Wed, 7 Jan 2009 01:50:53 +0000 (+0000) Subject: change client to use (type, hrn) instead of record in remove calls X-Git-Tag: sfa-0.9-0@14641~762 X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=commitdiff_plain;h=52c61280cf161a52321d5d003d6cae331f31fe3c change client to use (type, hrn) instead of record in remove calls --- 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 ##