| Index: third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/serve/serve.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/serve/serve.py b/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/serve/serve.py
|
| index f3d5c56432d51cca9b298894c6deba82e9c1ab2d..90ccbc722d9f669b84f9f7d8ea58299a0b4d5bb4 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/serve/serve.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/wpt/wpt/tools/serve/serve.py
|
| @@ -601,7 +601,11 @@ def main():
|
|
|
| setup_logger(config["log_level"])
|
|
|
| - with stash.StashServer((config["host"], get_port()), authkey=str(uuid.uuid4())):
|
| + stash_address = None
|
| + if config["bind_hostname"]:
|
| + stash_address = (config["host"], get_port())
|
| +
|
| + with stash.StashServer(stash_address, authkey=str(uuid.uuid4())):
|
| with get_ssl_environment(config) as ssl_env:
|
| config_, servers = start(config, ssl_env, build_routes(config["aliases"]), **kwargs)
|
|
|
|
|