Commit 4fe75ecf authored by Radostin Stoyanov's avatar Radostin Stoyanov Committed by Andrei Vagin

zdtm: Specify --address for remote_lazy_pages

When --remote-lazy-pages is used the address option was not specified.
Signed-off-by: 's avatarRadostin Stoyanov <rstoyanov1@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 29738509
...@@ -1132,7 +1132,7 @@ class criu: ...@@ -1132,7 +1132,7 @@ class criu:
if self.__lazy_pages or self.__lazy_migrate: if self.__lazy_pages or self.__lazy_migrate:
lp_opts = [] lp_opts = []
if self.__remote_lazy_pages or self.__lazy_migrate: if self.__remote_lazy_pages or self.__lazy_migrate:
lp_opts += ['--page-server', "--port", "12345"] lp_opts += ['--page-server', "--port", "12345", "--address", "127.0.0.1"]
if self.__remote_lazy_pages: if self.__remote_lazy_pages:
ps_opts = ["--pidfile", "ps.pid", ps_opts = ["--pidfile", "ps.pid",
"--port", "12345", "--lazy-pages"] "--port", "12345", "--lazy-pages"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment