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({
9999 // every sunday at midnight
100100 " every week" ,
101101 // every tuesday at 5pm
102- " 0 17 * ? 3 *" ,
102+ " 0 17 ? * 3 *" ,
103103 // every wednesday at 5pm
104- " 0 17 * ? 4 *" ,
104+ " 0 17 ? * 4 *" ,
105105 // every thursday at 5pm
106- " 0 17 * ? 5 *" ,
106+ " 0 17 ? * 5 *" ,
107107 // every friday at 5pm
108- " 0 17 * ? 6 *" ,
108+ " 0 17 ? * 6 *" ,
109109 ]
110110})
111111```
@@ -143,9 +143,9 @@ export const remindMe = defineFunction({
143143 name: " remind-me-to-take-the-trash-out" ,
144144 schedule: [
145145 // every tuesday at 9am
146- " 0 9 * ? 3 *" ,
146+ " 0 9 ? * 3 *" ,
147147 // every friday at 9am
148- " 0 9 * ? 6 *" ,
148+ " 0 9 ? * 6 *" ,
149149 ]
150150})
151151```
You can’t perform that action at this time.
0 commit comments