コード例 #1
0
ファイル: agent.py プロジェクト: VeenaSL/sriov
 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
コード例 #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
コード例 #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()
コード例 #4
0
ファイル: agent.py プロジェクト: see0/neutron
    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
コード例 #5
0
ファイル: agent.py プロジェクト: leesurezen/neutron
    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