@stamhoofd/backend-backup 2.120.1 → 2.120.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/boot.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamhoofd/backend-backup",
3
- "version": "2.120.1",
3
+ "version": "2.120.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "exports": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "00f65fc28d68feb86c30789784181a8954d638d7"
38
+ "gitHead": "404db833ca7d9ff5c863ca06100be17f63b237c5"
39
39
  }
package/src/boot.ts CHANGED
@@ -97,7 +97,7 @@ const start = async () => {
97
97
 
98
98
  // Register crons
99
99
  await import('./crons.js');
100
- startCrons();
100
+ startCrons({allowReadOnly: true});
101
101
 
102
102
  // Clean backups on boot (bit faster to retrieve the timestamp of the last backup for the health endpoint)
103
103
  await cleanBackups();