Searched refs:apiurl (Results 1 – 3 of 3) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/layerindexlib/ |
H A D | restapi.py | 144 def _get_json_response(apiurl=None, username=None, password=None, retry=True): argument 145 assert apiurl is not None 147 logger.debug("fetching %s" % apiurl) 149 up = urlparse(apiurl) 167 …parsed = _get_json_response(apiurl=up_stripped.geturl(), username=username, password=password, ret… 170 …FetchError('%s: Connection reset by peer. Is there a firewall blocking your connection?' % apiurl) 197 … index.apilinks = _get_json_response(apiurl=url, username=up.username, password=up.password)
|
/openbmc/openbmc/poky/bitbake/lib/bblayers/ |
H A D | layerindex.py | 129 apiurl = self.tinfoil.config_data.getVar('BBLAYERS_LAYERINDEX_URL').split() 130 if not apiurl: 136 for remoteurl in _construct_url(apiurl, branches): 141 logger.error("Remote layer index %s is empty for branches %s" % (apiurl, branches))
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/management/commands/ |
H A D | lsupdates.py | 82 self.apiurl = DEFAULT_LAYERINDEX_SERVER 84 self.apiurl = ToasterSetting.objects.get(name = 'CUSTOM_LAYERINDEX_SERVER').value 86 assert self.apiurl is not None 108 layerindex.load_layerindex("%s%s" % (self.apiurl, url_branches))
|