We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6051ee9 commit ee789a2Copy full SHA for ee789a2
apps/uptime/src/index.ts
@@ -89,7 +89,7 @@ const app = new Elysia()
89
90
const headerSchema = z.object({
91
"upstash-signature": z.string(),
92
- "upstash-schedule-id": z.string(),
+ "x-schedule-id": z.string(),
93
"upstash-retried": z.string().optional(),
94
});
95
@@ -108,7 +108,7 @@ const app = new Elysia()
108
);
109
}
110
111
- const { "upstash-signature": signature, "upstash-schedule-id": scheduleId } =
+ const { "upstash-signature": signature, "x-schedule-id": scheduleId } =
112
parsed.data;
113
114
const isValid = await receiver.verify({
0 commit comments