Skip to content

Commit 09e8b83

Browse files
remove duplicate link addition
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 0ae2ab0 commit 09e8b83

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/databricks/sql/cloud_fetch_queue.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -283,16 +283,17 @@ def __init__(
283283
)
284284

285285
if initial_links:
286-
logger.debug("SeaCloudFetchQueue: Initial links provided:")
287-
for link in initial_links:
288-
logger.debug(
289-
"- chunk: {}, row offset: {}, row count: {}, next chunk: {}".format(
290-
link.chunk_index,
291-
link.row_offset,
292-
link.row_count,
293-
link.next_chunk_index,
294-
)
295-
)
286+
initial_links = []
287+
# logger.debug("SeaCloudFetchQueue: Initial links provided:")
288+
# for link in initial_links:
289+
# logger.debug(
290+
# "- chunk: {}, row offset: {}, row count: {}, next chunk: {}".format(
291+
# link.chunk_index,
292+
# link.row_offset,
293+
# link.row_count,
294+
# link.next_chunk_index,
295+
# )
296+
# )
296297

297298
# Initialize download manager with initial links
298299
self.download_manager = ResultFileDownloadManager(

0 commit comments

Comments
 (0)