Skip to content

Commit

Permalink
379 Changed time_since_launch from 1 to 3600 in poe_api
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivareh committed Aug 13, 2024
1 parent 2faa9b4 commit d0e0842
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,6 @@ def dump_stream(self, track_progress: bool = True) -> Iterator[pd.DataFrame]:
print("Finished transformation phase.")
current_time = time.perf_counter()
time_since_launch = current_time - self.time_of_launch
if time_since_launch > 1:
if time_since_launch > 3600:
print("Program has run for more than an hour, shutting down.")
os._exit(0)

0 comments on commit d0e0842

Please sign in to comment.