qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v1 1/4] Acceptance test: add address as param


From: Wainer dos Santos Moschetta
Subject: Re: [PATCH v1 1/4] Acceptance test: add address as param
Date: Thu, 20 Feb 2020 15:54:31 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.4.0

Hi Oksana,

On 2/14/20 12:52 PM, Oksana Vohchana wrote:
Provides param address in _get_free_port()
because by default it takes free port only on the localhost

Signed-off-by: Oksana Vohchana <address@hidden>
---
  tests/acceptance/migration.py | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/acceptance/migration.py b/tests/acceptance/migration.py
index a8367ca023..e4c39b85a1 100644
--- a/tests/acceptance/migration.py
+++ b/tests/acceptance/migration.py
@@ -52,8 +52,8 @@ class Migration(Test):
          source_vm.qmp('migrate', uri=src_uri)
          self.assert_migration(source_vm, dest_vm)
- def _get_free_port(self):
-        port = network.find_free_port()
+    def _get_free_port(self, address='localhost'):
+        port = network.find_free_port(address=address)

Looks good to me, but:

- This patch is out of order, it should be followed by patches 03 and 04.

- You could have described in the cover letter (or in the commit) your intention with this change.

Reviewed-by: Wainer dos Santos Moschetta <address@hidden>

Thanks!

- Wainer

          if port is None:
              self.cancel('Failed to find a free port')
          return port




reply via email to

[Prev in Thread] Current Thread [Next in Thread]