@stamhoofd/backend-backup 2.120.1 → 2.120.3
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.
- package/package.json +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.
|
|
3
|
+
"version": "2.120.3",
|
|
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": "
|
|
38
|
+
"gitHead": "640ab6cea8c65bc276d4ca7ec8a1d172a23e9a06"
|
|
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();
|