We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae76227 + 19ac1b5 commit 8fcf914Copy full SHA for 8fcf914
exercises/UpdateRecords/UpdateRecords.hs
@@ -37,6 +37,7 @@ sweeterBrother = sweden {nickname = "Söta bror"}
37
Exercise:
38
Define backupDBWeekly as a copy of backupDB, but with a few
39
altered fields:
40
+ cron = "@weekly"
41
user = "dbadmin"
42
priority = 8
43
displayName = "Weekly Backup of Postgres DB"
exercises/UpdateRecords/UpdateRecordsSpec.hs
@@ -19,7 +19,7 @@ correctBackupDBWeekly = UR.ScheduledJob {
19
UR.displayName = "Weekly Backup of Postgres DB",
20
21
UR.command = "/usr/bin/backupdb",
22
- UR.cron = "@daily",
+ UR.cron = "@weekly",
23
UR.threads = 1,
24
UR.timeoutMinutes = 60
25
}
0 commit comments