You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by "dafu (JIRA)" <ji...@apache.org> on 2013/02/04 03:16:13 UTC

[jira] [Created] (HELIX-41) fix intermittent test failures

dafu created HELIX-41:
-------------------------

             Summary: fix intermittent test failures
                 Key: HELIX-41
                 URL: https://issues.apache.org/jira/browse/HELIX-41
             Project: Apache Helix
          Issue Type: Bug
            Reporter: dafu


a few tests have the following pattern for assert test failure
sleep(xx) // wait zk callback to arrive or sth. similar
assert(ret==true)
but this depends on the zk callback latency and it's not stable.

change it to:
for (int i = 0; i < 10) {
  if (ret == true)
    break;
  sleep(xx);
}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira