From: smbaker Date: Mon, 27 May 2013 21:59:27 +0000 (-0700) Subject: add support for netconfig aspect X-Git-Tag: plcapi-5.2-3~1 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=12c40b08c0317282d4d278bc8272c55cf2f529ba add support for netconfig aspect --- diff --git a/PLC/API.py b/PLC/API.py index 6cab28e..201de2d 100644 --- a/PLC/API.py +++ b/PLC/API.py @@ -155,6 +155,9 @@ class PLCAPI: from aspects import apply_ratelimit_aspect apply_ratelimit_aspect() + if getattr(self.config, "PLC_NETCONFIG_ENABLED", False): + from aspects.netconfigaspects import apply_netconfig_aspect + apply_netconfig_aspect() # Enable Caching. Only for GetSlivers for the moment. # TODO: we may consider to do this in an aspect like the ones above.