diff options
author | Magnus Ahltorp <map@kth.se> | 2016-10-18 15:10:02 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2016-10-18 15:10:02 +0200 |
commit | fd355ccea0227f32f49733a856103d02226be57a (patch) | |
tree | 6918ac5f598e6a62e56bb1c73f696836c735540f /tools | |
parent | c8af4e40e0096f60a5cf5039be775ff002619c4d (diff) |
Remove unused code from test Makefile.
Fix parsing bug in compileconfig.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/compileconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/compileconfig.py b/tools/compileconfig.py index cee9873..7ba2fac 100755 --- a/tools/compileconfig.py +++ b/tools/compileconfig.py @@ -101,7 +101,7 @@ def gen_http_servers(nodetype, nodeconfig, bind_addresses, bind_publicaddress, b if bind_publicaddress: (publichost, publicport) = parse_address(bind_publicaddress) else: - (_, publicport) = parse_address(nodeconfig["publicaddress"]) + (_, publicport) = parse_address(nodeconfig["frontendnodes"]["publicaddress"]) publichost = "0.0.0.0" if bind_publichttpaddress: |