···6060}
61616262/// This scheduled job finds:
6363-/// - accounts that have not been backed up in the last 6 hours and have pds_sign_up = false,
6363+/// - accounts that have not been backed up in the last 2 hours and have pds_sign_up = false,
6464/// and enqueues AccountBackup jobs for them;
6565-/// - pds_hosts that are active and have not started a backup in the last 6 hours (tracked via
6565+/// - pds_hosts that are active and have not started a backup in the last 2 hours (tracked via
6666/// pds_hosts.last_backup_start), and enqueues PdsBackup jobs for each.
6767pub async fn scheduled_back_up_start_job(
6868 _job: ScheduledBackUpStartJobContext,
···8282 SELECT did, pds_host
8383 FROM accounts
8484 WHERE pds_sign_up = FALSE
8585- AND (last_backup IS NULL OR last_backup < NOW() - INTERVAL '6 HOURS')
8585+ AND (last_backup IS NULL OR last_backup < NOW() - INTERVAL '2 HOURS')
8686 "#,
8787 )
8888 .fetch_all(&*pool)
···185185 SELECT pds_host
186186 FROM pds_hosts
187187 WHERE active = TRUE
188188- AND (last_backup_start IS NULL OR last_backup_start < NOW() - INTERVAL '6 HOURS')
188188+ AND (last_backup_start IS NULL OR last_backup_start < NOW() - INTERVAL '2 HOURS')
189189 "#,
190190 )
191191 .fetch_all(&*pool)
+1-1
web-ui/src/routes/backups/SignUpForm.svelte
···136136 <h2>No backup repository found</h2>
137137 <p style="text-align: left;">
138138 Sign up now to backup your AT Protocol account. PDS MOOver automatically backups your posts,
139139- likes, media, and all account data every 6 hours. This is stored on our servers in something
139139+ likes, media, and all account data every 2 hours. This is stored on our servers in something
140140 called an <a
141141 target="_blank"
142142 rel="noopener noreferrer"
+1-1
web-ui/src/routes/info/+page.svelte
···7878 <p>PDS MOOver now supports backups. These are automated backups of your account saving your repo
7979 (posts,likes,etc), and your blobs(picture/videos) from your AT Proto account to a cloud base object
8080 store (S3). This is a free service for individual accounts and stores the backups on PDS MOOver's
8181- servers. These backups will happen every 6 hours from the time you sign up. We are expecting to lower
8181+ servers. These backups will happen every 2 hours from the time you sign up. We are expecting to lower
8282 this as we see how the service does. On login, you will be asked if you'd like to add a rotation key to
8383 your account. It is highly recommended to do this if you do not already have one. This is the only way
8484 you can recover your account in the event of a PDS failure or rogue account takeover</p>