Exemplo n.º 1
0
 def __init__(self, conf):
     self.conf = conf
     self.auth_info = {}
     if self.conf.cache_url:
         self._cache = cache.get_cache(self.conf.cache_url)
     else:
         self._cache = False
Exemplo n.º 2
0
 def __init__(self, conf):
     self.conf = conf
     self.auth_info = {}
     if self.conf.cache_url:
         self._cache = cache.get_cache(self.conf.cache_url)
     else:
         self._cache = False
Exemplo n.º 3
0
    def __init__(self, conf):
        self.conf = conf
        if self.conf.cache_url:
            self._cache = cache.get_cache(self.conf.cache_url)
        else:
            self._cache = False

        self.plugin_rpc = MetadataPluginAPI(topics.PLUGIN)
        self.context = context.get_admin_context_without_session()
Exemplo n.º 4
0
    def __init__(self, conf):
        self.conf = conf
        self.auth_info = {}
        if self.conf.cache_url:
            self._cache = cache.get_cache(self.conf.cache_url)
        else:
            self._cache = False

        self.plugin_rpc = MetadataPluginAPI(topics.PLUGIN)
        self.context = context.get_admin_context_without_session()
        # Use RPC by default
        self.use_rpc = True
Exemplo n.º 5
0
    def __init__(self, conf):
        self.conf = conf
        self.auth_info = {}
        if self.conf.cache_url:
            self._cache = cache.get_cache(self.conf.cache_url)
        else:
            self._cache = False

        self.plugin_rpc = MetadataPluginAPI(topics.PLUGIN)
        self.context = context.get_admin_context_without_session()
        # Use RPC by default
        self.use_rpc = True