File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/pages/[platform]/build-a-backend/functions/scheduling-functions Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -99,13 +99,13 @@ export const remindMe = defineFunction({
99
99
// every sunday at midnight
100
100
" every week" ,
101
101
// every tuesday at 5pm
102
- " 0 17 * * 2 " ,
102
+ " 0 17 * ? 3 * " ,
103
103
// every wednesday at 5pm
104
- " 0 17 * * 3 " ,
104
+ " 0 17 * ? 4 * " ,
105
105
// every thursday at 5pm
106
- " 0 17 * * 4 " ,
106
+ " 0 17 * ? 5 * " ,
107
107
// every friday at 5pm
108
- " 0 17 * * 5 " ,
108
+ " 0 17 * ? 6 * " ,
109
109
]
110
110
})
111
111
```
@@ -143,9 +143,9 @@ export const remindMe = defineFunction({
143
143
name: " remind-me-to-take-the-trash-out" ,
144
144
schedule: [
145
145
// every tuesday at 9am
146
- " 0 9 * * 2 " ,
146
+ " 0 9 * ? 3 * " ,
147
147
// every friday at 9am
148
- " 0 9 * * 5 " ,
148
+ " 0 9 * ? 6 * " ,
149
149
]
150
150
})
151
151
```
You can’t perform that action at this time.
0 commit comments