Skip to content

Commit 7092a95

Browse files
Fix timezone
1 parent 95bad17 commit 7092a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scheduled_jobs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def process_orders(app):
2626
payload = {
2727
"product": order.product,
2828
"customer": order.customer,
29-
"date": order.date_placed.isoformat(),
29+
"date": order.date_placed_local.isoformat(),
3030
}
3131

3232
app.logger.info(f"Request payload: {payload}")

0 commit comments

Comments
 (0)