[ https://issues.apache.org/jira/browse/HELIX-41?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
dafu reassigned HELIX-41:
-------------------------
Assignee: dafu
> fix intermittent test failures
> ------------------------------
>
> Key: HELIX-41
> URL: https://issues.apache.org/jira/browse/HELIX-41
> Project: Apache Helix
> Issue Type: Bug
> Reporter: dafu
> Assignee: 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
|