|
@@ -90,7 +90,8 @@ def subnet_save_event(sender, **kwargs):
|
|
|
subnet = kwargs['instance']
|
|
|
try:
|
|
|
config = subnet.configuration
|
|
|
- config.save_subnet(subnet, kwargs['created'])
|
|
|
+ if hasattr(config, 'save_subnet'):
|
|
|
+ config.save_subnet(subnet, kwargs['created'])
|
|
|
except ObjectDoesNotExist:
|
|
|
pass
|
|
|
|
|
@@ -103,6 +104,7 @@ def subnet_delete_event(sender, **kwargs):
|
|
|
subnet = kwargs['instance']
|
|
|
try:
|
|
|
config = subnet.configuration
|
|
|
- config.delete_subnet(subnet)
|
|
|
+ if hasattr(config, 'delete_subnet'):
|
|
|
+ config.delete_subnet(subnet)
|
|
|
except ObjectDoesNotExist:
|
|
|
pass
|