Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit f62c42b

Browse files
committed
updates time to monotonic
1 parent f58d712 commit f62c42b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google/cloud/bigquery/_pandas_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ def _download_table_bqstorage(
10371037
while not_done:
10381038
# Check for timeout
10391039
if timeout is not None:
1040-
elapsed = time.time() - start_time
1040+
elapsed = time.monotonic() - start_time
10411041
if elapsed > timeout:
10421042
wait_on_shutdown = False
10431043
raise concurrent.futures.TimeoutError(

0 commit comments

Comments
 (0)