X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=sfa%2Futil%2FsfatablesRuntime.py;h=2266b3117fca461df626669ea82e3e390dca6e2c;hb=713d58df0baa1f9739eec9bfa30ceb41d7149e23;hp=24437772f5c654f10c24a514526b3b078e63fbda;hpb=58e6df0ffc61516da76846bd94188d77635a6371;p=sfa.git diff --git a/sfa/util/sfatablesRuntime.py b/sfa/util/sfatablesRuntime.py index 24437772..2266b311 100644 --- a/sfa/util/sfatablesRuntime.py +++ b/sfa/util/sfatablesRuntime.py @@ -11,10 +11,11 @@ try: information that sfatables is requesting. But for now, we just return the basic information needed in a dict. """ - base_context = {'sfa':{'user':{'hrn':user_hrn}, 'slice':{'hrn':slice_hrn}}} + base_context = { + 'sfa': {'user': {'hrn': user_hrn}, 'slice': {'hrn': slice_hrn}}} return base_context - def run_sfatables(chain, hrn, origin_hrn, rspec, context_callback = None ): + def run_sfatables(chain, hrn, origin_hrn, rspec, context_callback=None): """ Run the rspec through sfatables @param chain Name of rule chain @@ -22,7 +23,7 @@ try: @param origin_hrn Original caller's hrn @param rspec Incoming rspec @param context_callback Callback used to generate the request context - + @return rspec """ if not context_callback: @@ -40,8 +41,10 @@ try: return newrspec except: - - from sfa.util.logging import logger - def run_sfatables (_,__,___, rspec, ____=None): - logger.warning("Cannot import sfatables.runtime, please install package sfa-sfatables") + + from sfa.util.sfalogging import logger + + def run_sfatables(_, __, ___, rspec, ____=None): + logger.warning( + "Cannot import sfatables.runtime, please install package sfa-sfatables") return rspec