Relative Content

Tag Archive for firebasegoogle-cloud-functionsfirebase-cloud-messaginggoogle-cloud-pubsub

Schedule Firebase Cloud Function Doesn’t Handle DST

exports.sendDailyNotification = functions.pubsub.schedule(‘0 12 * * *’) .timeZone(‘America/Chicago’) .onRun(async (context) => { // Code Here } I would expect this cloud function to run every day at 12:00 PM Chicago time. However, it appears as if it is using CST currently instead of CDT. This causes it to run at 11:00 PM Chicago time since […]