Increase retries in cord-tester for OVS connection to establish with controller
diff --git a/src/test/setup/cord-test.py b/src/test/setup/cord-test.py
index 272a4ed..cd1f164 100755
--- a/src/test/setup/cord-test.py
+++ b/src/test/setup/cord-test.py
@@ -69,7 +69,7 @@
status = 1
## Wait for the LLDP flows to be added to the switch
tries = 0
- while status != 0 and tries < 100:
+ while status != 0 and tries < 150:
cmd = 'sudo ovs-ofctl dump-flows {0} | grep \"type=0x8942\"'.format(bridge)
status = self.execute_switch(cmd, shell = True)
tries += 1