Reduce excessive sleeping in tests
Some of the tests waited for excessively long periods of time for changes to propagate. With a one second monitor interval, a sleep of around five seconds should be plenty enough for all monitor related changes to be propagated to all systems.
This commit is contained in:
@ -212,8 +212,8 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
|
||||
Test->stop_timeout();
|
||||
Test->tprintf("Sleeping 15 seconds\n");
|
||||
sleep(15);
|
||||
Test->tprintf("Sleeping");
|
||||
sleep(5);
|
||||
|
||||
for (i = 0; i < Test->repl->N; i++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user