From c1d4ec745ee750f740ba186a2c56d744df738fbf Mon Sep 17 00:00:00 2001 From: btangmu Date: Fri, 22 Sep 2023 12:14:03 -0400 Subject: [PATCH] CLDR-16965 Move Automatic Snapshot time later so still finished by 8:30 am -Start at 8:00 am PT (America/Los_Angeles); typical duration is eight minutes -Purpose of the change is for snapshot to be more up to date for morning meeting --- .../src/main/java/org/unicode/cldr/web/api/Summary.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cldr-apps/src/main/java/org/unicode/cldr/web/api/Summary.java b/tools/cldr-apps/src/main/java/org/unicode/cldr/web/api/Summary.java index c9368019cdc..22ca409ae1b 100644 --- a/tools/cldr-apps/src/main/java/org/unicode/cldr/web/api/Summary.java +++ b/tools/cldr-apps/src/main/java/org/unicode/cldr/web/api/Summary.java @@ -43,9 +43,9 @@ public class Summary { /** When to start a daily automatic snapshot */ - private static final int AUTO_SNAP_HOUR_OF_DAY = 1; + private static final int AUTO_SNAP_HOUR_OF_DAY = 8; - private static final int AUTO_SNAP_MINUTE_OF_HOUR = 11; // 1:11 am + private static final int AUTO_SNAP_MINUTE_OF_HOUR = 0; // 8:00 am private static final int AUTO_SNAP_MINIMUM_START_MINUTES = 3; private static final String AUTO_SNAP_TIME_ZONE = "America/Los_Angeles"; private static ScheduledFuture autoSnapshotFuture = null;