1
mirror of https://gitlab.com/commento/commento.git synced 2026-06-17 09:55:27 -04:00

cron_domain_export_cleanup.go: change cron period

This commit is contained in:
Adhityaa Chandrasekar
2019-01-31 02:19:47 -05:00
parent 94829d9b83
commit 6caa3e312c
+1 -1
View File
@@ -11,7 +11,7 @@ func domainExportCleanupBegin() error {
DELETE FROM exports
WHERE creationDate < $1;
`
_, err := db.Exec(statement, time.Now().UTC().AddDate(0, -7, 0))
_, err := db.Exec(statement, time.Now().UTC().AddDate(0, 0, -7))
if err != nil {
logger.Errorf("error cleaning up export rows: %v", err)
return