commit 49a70525f6e25bb24b8a03b85cd11f234f53391d
parent a02cdf22bc54e981c522aa3896299087ed518703
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 29 Jul 2026 13:08:34 +0200
testing: wait 10ms, not 10us, between service readiness probes
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/testing/testing_api_helpers.c b/src/testing/testing_api_helpers.c
@@ -79,7 +79,8 @@ ANASTASIS_TESTING_run_anastasis (const char *config_filename,
}
{
struct timespec req = {
- .tv_nsec = 10000
+ /* 10 ms (was 10000 ns = 10 us, far too short on loaded CI hosts) */
+ .tv_nsec = 10 * 1000 * 1000
};
nanosleep (&req,