Skip to content

Commit d0e0842

Browse files
committed
379 Changed time_since_launch from 1 to 3600 in poe_api
1 parent 2faa9b4 commit d0e0842

File tree

1 file changed

+1
-1
lines changed
  • src/backend_data_retrieval/data_retrieval/external_data_retrieval/data_retrieval/poe_api_retrieval

1 file changed

+1
-1
lines changed

src/backend_data_retrieval/data_retrieval/external_data_retrieval/data_retrieval/poe_api_retrieval/poe_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,6 @@ def dump_stream(self, track_progress: bool = True) -> Iterator[pd.DataFrame]:
460460
print("Finished transformation phase.")
461461
current_time = time.perf_counter()
462462
time_since_launch = current_time - self.time_of_launch
463-
if time_since_launch > 1:
463+
if time_since_launch > 3600:
464464
print("Program has run for more than an hour, shutting down.")
465465
os._exit(0)

0 commit comments

Comments
 (0)