From: Tony Mack Date: Fri, 11 Sep 2009 02:00:03 +0000 (+0000) Subject: if the record exist dont try to add it, update it X-Git-Tag: PLCAPI-4.3-24~9 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=d37340748e49a765bcb2de8558804a8255fef8c9 if the record exist dont try to add it, update it --- diff --git a/PLC/SFA.py b/PLC/SFA.py index ce097f9..883f570 100644 --- a/PLC/SFA.py +++ b/PLC/SFA.py @@ -154,6 +154,8 @@ class SFA: # add the record to sfa if not self.sfa_record_exists(object['hrn'], type): self.registry.register(self.credential, record) + else: + self.registry.update(self.credential, record) @wrap_exception @required_packages_imported