Skip to content

Commit

Permalink
change to 2 packages
Browse files Browse the repository at this point in the history
  • Loading branch information
thinhle-agilityio committed Sep 12, 2023
1 parent f84e634 commit 7e2f983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cron-job/src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ export default {

// You could store this result in KV, write to a D1 Database, or publish to a Queue.
// In this template, we'll just log the result:
console.log(`trigger fired at ${event.cron}: ${wasSuccessful}`);
console.log(`trigger was fired at ${event.cron}: ${wasSuccessful}`);
},
};
2 changes: 1 addition & 1 deletion packages/serverless-api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
const cookie = parse(request.headers.get("Cookie") || "");
console.log('cookie', cookie);

const userId = 'test-user-2';
const userId = 'test-user-3';

return new Response(JSON.stringify({
url: request.url,
Expand Down

0 comments on commit 7e2f983

Please sign in to comment.