I am using following code to schedule a function in EST time zone.
The function is scheduled on time on windows machine whose timezone is PST.
The function is NOT scheduled on time on linux machine (GCP cloud) whose timezone is UTC.
When I say on time i mean 9:45 EST. I want to function to be scheduled at 9:45 EST irrespective of machine timezone.
OP from linux machine which is in UTC
print("Scheduled jobs:", schedule.jobs)
Scheduled jobs: [Every 1 day at 09:45:00 do run_live_traders_in_parallel() (last run: [never], next run: 2023-07-15 13:45:00)
I am using following code to schedule a function in EST time zone.
The function is scheduled on time on windows machine whose timezone is PST. The function is NOT scheduled on time on linux machine (GCP cloud) whose timezone is UTC.
When I say on time i mean 9:45 EST. I want to function to be scheduled at 9:45 EST irrespective of machine timezone.
What can be a potential issue?