def get_proxy_request_url(thisAuth, thisContainer=None, thisObject=None):
"""
create the url under which this API proxy will reach its swift back end. basically this is the request url with a different hostname
:param thisAuth:
:param thisContainer:
:param thisObject:
:return:
"""
u = configuration.swift_store_url.format(thisAuth)
if thisContainer:
u += "/" + thisContainer
if thisObject:
u += "/" + thisObject
return u
##############################################################################
# Frontend Pool
##############################################################################
评论列表
文章目录