diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-08-27 17:56:04 -0700 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-08-28 15:59:05 +0200 |
commit | 1e86592650fc695615e0fa34c947b32693d03466 (patch) | |
tree | e970e02d2cb56c94276971a271f028db9471f0ac /src/test | |
parent | 56f5c144cfff229235817feda9baf4036b22156a (diff) |
Fix frontend docker
Fix the frontend docker in Nginx with https for backend in https as well
Issue-ID: CLAMP-486
Change-Id: I33fd89289618affa5e734c80991aaefece31309e
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'src/test')
-rwxr-xr-x | src/test/resources/http-cache/third_party_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/resources/http-cache/third_party_proxy.py b/src/test/resources/http-cache/third_party_proxy.py index 0381ab18f..5ec9f46c1 100755 --- a/src/test/resources/http-cache/third_party_proxy.py +++ b/src/test/resources/http-cache/third_party_proxy.py @@ -43,7 +43,7 @@ parser.add_argument("--temp", "-t", default=tempfile.mkdtemp(), type=str, he parser.add_argument("--proxy" , type=str, help="Url of the Act as a proxy. If not set, this script only uses the cache and will return a 404 if files aren't found") parser.add_argument("--port", "-P", type=int, default="8081", help="Port on which the proxy should listen to") parser.add_argument("--verbose", "-v", type=bool, help="Print more information in case of error") -parser.add_argument("--proxyaddress","-a", type=str, help="Address of this proxy, generally either third_party_proxy:8085 or localhost:8085 depending if started with docker-compose or not") +parser.add_argument("--proxyaddress","-a", type=str, help="Address of this proxy, generally either third-party-proxy:8085 or localhost:8085 depending if started with docker-compose or not") options = parser.parse_args() |