[ARVADOS] updated: 1.3.0-1409-g1c55986aa
Git user
git at public.curoverse.com
Fri Jul 26 01:30:49 UTC 2019
Summary of changes:
sdk/python/tests/run_test_server.py | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
via 1c55986aa5449d341f847f13bae5ace193537cc0 (commit)
from 6553659fdd8986fe6920b875d4c54b4e0536a322 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 1c55986aa5449d341f847f13bae5ace193537cc0
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date: Thu Jul 25 21:30:34 2019 -0400
15467: Explicitly configure for IPv4
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>
diff --git a/sdk/python/tests/run_test_server.py b/sdk/python/tests/run_test_server.py
index 6c3585dd8..81c1b8412 100644
--- a/sdk/python/tests/run_test_server.py
+++ b/sdk/python/tests/run_test_server.py
@@ -689,42 +689,43 @@ def setup_config():
if "test" not in pgconnection["dbname"]:
pgconnection["dbname"] = "arvados_test"
+ localhost = "127.0.0.1"
services = {
"RailsAPI": {
"InternalURLs": { }
},
"Controller": {
- "ExternalURL": "https://localhost:%s" % controller_external_port,
+ "ExternalURL": "https://%s:%s" % (localhost, controller_external_port),
"InternalURLs": { }
},
"Websocket": {
- "ExternalURL": "wss://localhost:%s/websocket" % websocket_external_port,
+ "ExternalURL": "wss://%s:%s/websocket" % (localhost, websocket_external_port),
"InternalURLs": { }
},
"GitHTTP": {
- "ExternalURL": "https://localhost:%s" % git_httpd_external_port,
+ "ExternalURL": "https://%s:%s" % (localhost, git_httpd_external_port),
"InternalURLs": { }
},
"Keepproxy": {
- "ExternalURL": "https://localhost:%s" % keepproxy_external_port,
+ "ExternalURL": "https://%s:%s" % (localhost, keepproxy_external_port),
"InternalURLs": { }
},
"WebDAV": {
- "ExternalURL": "https://localhost:%s" % keep_web_external_port,
+ "ExternalURL": "https://%s:%s" % (localhost, keep_web_external_port),
"InternalURLs": { }
},
"WebDAVDownload": {
- "ExternalURL": "https://localhost:%s" % keep_web_dl_external_port,
+ "ExternalURL": "https://%s:%s" % (localhost, keep_web_dl_external_port),
"InternalURLs": { }
}
}
- services["RailsAPI"]["InternalURLs"]["https://localhost:%s"%rails_api_port] = {}
- services["Controller"]["InternalURLs"]["http://localhost:%s"%controller_port] = {}
- services["Websocket"]["InternalURLs"]["http://localhost:%s"%websocket_port] = {}
- services["GitHTTP"]["InternalURLs"]["http://localhost:%s"%git_httpd_port] = {}
- services["Keepproxy"]["InternalURLs"]["http://localhost:%s"%keepproxy_port] = {}
- services["WebDAV"]["InternalURLs"]["http://localhost:%s"%keep_web_port] = {}
- services["WebDAVDownload"]["InternalURLs"]["http://localhost:%s"%keep_web_dl_port] = {}
+ services["RailsAPI"]["InternalURLs"]["https://%s:%s"%(localhost, rails_api_port)] = {}
+ services["Controller"]["InternalURLs"]["http://%s:%s"%(localhost, controller_port)] = {}
+ services["Websocket"]["InternalURLs"]["http://%s:%s"%(localhost, websocket_port)] = {}
+ services["GitHTTP"]["InternalURLs"]["http://%s:%s"%(localhost, git_httpd_port)] = {}
+ services["Keepproxy"]["InternalURLs"]["http://%s:%s"%(localhost, keepproxy_port)] = {}
+ services["WebDAV"]["InternalURLs"]["http://%s:%s"%(localhost, keep_web_port)] = {}
+ services["WebDAVDownload"]["InternalURLs"]["http://%s:%s"%(localhost, keep_web_dl_port)] = {}
config = {
"Clusters": {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list