From f5d9712f95891d34a36b529cb37f05a1a6de2698 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 13 Jan 2017 14:49:05 -0800 Subject: [PATCH] Use clock by default (instead of clock.check) We're seeing clocks desynchronized. My theory is that this might be because ntp can take five minutes or more to actually sync the clocks, and clock.check doesn't do any setting of the clocks, just reporting. clock, OTOH, stops ntpd and does an ntpdate, and then restarts ntpd, which should kickstart it with a much-closer-to-correct time. Signed-off-by: Dan Mick --- teuthology/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/run.py b/teuthology/run.py index 35070182b6..4782efda2c 100644 --- a/teuthology/run.py +++ b/teuthology/run.py @@ -234,7 +234,7 @@ def get_initial_tasks(lock, config, machine_type): {'pcp': None}, {'selinux': None}, {'ansible.cephlab': None}, - {'clock.check': None} + {'clock': None} ]) return init_tasks -- 2.39.5