faft: A workaround to wait for client RPC server start-up

We found that the RPC call retrial doesn't work all the time and causes
timeout error happened. It breaks FAFT most of the time. So add this delay
to wait the client RPC server start-up as a work-around. This is a
temporary fix.

BUG=chrome-os-partner:16037
TEST=run a FAFT test and pass.

Change-Id: If1df1f697dc336f2ace63d6d5e5a5393acc32916
Reviewed-on: https://gerrit.chromium.org/gerrit/37431
Commit-Ready: Tom Wai-Hong Tam <waihong@chromium.org>
Reviewed-by: Tom Wai-Hong Tam <waihong@chromium.org>
Tested-by: Tom Wai-Hong Tam <waihong@chromium.org>
diff --git a/server/cros/servo_test.py b/server/cros/servo_test.py
index 323d886..46dab0a 100644
--- a/server/cros/servo_test.py
+++ b/server/cros/servo_test.py
@@ -214,6 +214,12 @@
             xmlrpclib.ServerProxy(remote_url, allow_none=True))
         logging.info('Server proxy: %s' % remote_url)
 
+        # We found that the following RPC call retrial doesn't work all the
+        # time and causes timeout error happened. So add this delay to wait
+        # the client RPC server start-up as a work-around.
+        # TODO(waihong@chromium.org): Find the root cause why retrial not work.
+        time.sleep(5)
+
         # Poll for client RPC server to come online.
         timeout = 20
         succeed = False