Skip to content

Commit f8cdfc5

Browse files
committed
Link expiry buffer in secs
Signed-off-by: Matthew Kim <[email protected]>
1 parent 65af40f commit f8cdfc5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/databricks/sql/cloudfetch/download_manager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ class DownloadableResultSettings:
1717
1818
Attributes:
1919
is_lz4_compressed (bool): Whether file is expected to be lz4 compressed.
20-
link_expiry_buffer (int): Time in seconds to prevent download of a link before it expires. Default 0 secs.
20+
link_expiry_buffer_secs (int): Time in seconds to prevent download of a link before it expires. Default 0 secs.
2121
download_timeout (int): Timeout for download requests. Default 60 secs.
2222
max_consecutive_file_download_retries (int): Number of consecutive download retries before shutting down.
2323
"""
2424

2525
is_lz4_compressed: bool
26-
link_expiry_buffer: int = 0
26+
link_expiry_buffer_secs: int = 0
2727
download_timeout: int = 60
2828
max_consecutive_file_download_retries: int = 0
2929

0 commit comments

Comments
 (0)