-
Notifications
You must be signed in to change notification settings - Fork 12
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Watermelon AI SummaryThis pull request introduces a testing mechanism for monitoring scheduled tasks (crons) within the analytics system, by creating a route dedicated to testing and ensuring any scheduling adjustments are reflected accurately in the analytics data. It combines development progress with this testing feature. GitHub PRs
Click here to login to Jira Notion PagesLinear TicketsClick here to login to Asana |
@@ -0,0 +1,5 @@ | |||
export async function POST(request: Request) { | |||
console.log("current time", new Date().toLocaleTimeString()); | |||
console.log("request.json()", await request.json()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains console logs. Please review or remove them.
@@ -0,0 +1,5 @@ | |||
export async function POST(request: Request) { | |||
console.log("current time", new Date().toLocaleTimeString()); | |||
console.log("request.json()", await request.json()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains console logs. Please review or remove them.
@@ -0,0 +1,5 @@ | |||
export async function POST(request: Request) { | |||
console.log("current time", new Date().toLocaleTimeString()); | |||
console.log("request.json()", await request.json()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR contains console logs. Please review or remove them.
Unneeded |
Description
Test of our crons showing up in analytics
Type of change
Notes
Acceptance