tangled
alpha
login
or
join now
openstatus.dev
/
openstatus
5
fork
atom
Openstatus
www.openstatus.dev
5
fork
atom
overview
issues
pulls
pipelines
ðŸ˜
thibault.tngl.sh
4 months ago
8353e97a
72befb08
+3
1 changed file
expand all
collapse all
unified
split
apps
workflows
src
cron
checker.ts
+3
apps/workflows/src/cron/checker.ts
···
44
44
45
45
46
46
const client = new CloudTasksClient({
47
47
+
fallback:"rest",
47
48
channelOptions,
48
49
projectId: env().GCP_PROJECT_ID,
49
50
credentials: {
···
159
160
const success = allRequests.filter((r) => r.status === "fulfilled").length;
160
161
const failed = allRequests.filter((r) => r.status === "rejected").length;
161
162
const failedRequest = allRequests.filter((r) => r.status === "rejected")
163
163
+
164
164
+
162
165
console.log(failedRequest?.at(0))
163
166
console.log(
164
167
`End cron for ${periodicity} with ${allResult.length} jobs with ${success} success and ${failed} failed`,