fix: cloud tasks not being queued and failing silently

This commit is contained in:
2024-10-14 08:28:22 +08:00
parent 91dd250823
commit 37cf7bd738
2 changed files with 12 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
export class FailedToQueueTaskError extends Error {
constructor(status: number, bodyText: string) {
super(`Failed to queue task; status: ${status}, body: ${bodyText}`);
}
}