Skip to content

Commit

Permalink
fix: update schwab previous run output start time
Browse files Browse the repository at this point in the history
  • Loading branch information
daneisburgh committed Mar 4, 2024
1 parent 8919106 commit 355658e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invaas/schwab/schwab_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def __get_previous_run_output(self):
return []

previous_run_output = []
previous_start_time_ms = (datetime.now(timezone.utc) - timedelta(days=7)).timestamp() * 1000
previous_start_time_ms = (datetime.now(timezone.utc) - timedelta(hours=12)).timestamp() * 1000
previous_job_run_ids = [
x.run_id
for x in self.workspace_client.jobs.list_runs(
Expand Down

0 comments on commit 355658e

Please sign in to comment.