Skip to content

Commit b50696b

Browse files
authored
Fix ports params (#1330)
1 parent 82d7186 commit b50696b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/python/lib/k2_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def __init__(self, k2_server_bin, working_dir, kphp_build_dir, options=None, aut
2222
self._json_log_file = None
2323
self._options = {"start-node": True,
2424
"--host": "127.0.0.1",
25-
"--http_port": self.http_port,
26-
"--rpc_port": self.rpc_port,
25+
"--http-ports": self.http_port,
26+
"--rpc-ports": self.rpc_port,
2727
"--images-dir": self._images_dir,
2828
"--restart-socket": "/tmp/k2_restart_node_{}".format(hash(self._working_dir)),
2929
"--linking": self._linking_file}

0 commit comments

Comments
 (0)