Merge "Wait for tenant VM netcat server start on fast setups"
diff --git a/neutron_tempest_plugin/common/utils.py b/neutron_tempest_plugin/common/utils.py
index 5d6a26a..184444f 100644
--- a/neutron_tempest_plugin/common/utils.py
+++ b/neutron_tempest_plugin/common/utils.py
@@ -165,7 +165,7 @@
self.server_ssh.exec_command(
'echo "{}" > input.txt'.format(self.test_str))
server_exec_method('tail -f input.txt | sudo nc -lp '
- '{} &> output.txt &'.format(self.port))
+ '{} &> output.txt & sleep 1'.format(self.port))
self.client_ssh.exec_command(
'echo "{}" > input.txt'.format(self.test_str))
client_exec_method('tail -f input.txt | sudo nc {} {} &>'