Skip to content

Commit c5ab772

Browse files
owenowenismepeterxcli
authored andcommitted
[Data] Fix iceberg warning msg (ray-project#60044)
Fixes missing space in the warning message. --------- Signed-off-by: You-Cheng Lin <mses010108@gmail.com> Signed-off-by: peterxcli <peterxcli@gmail.com>
1 parent 433fdca commit c5ab772

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/ray/data/_internal/datasource/iceberg_datasource.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,7 @@ def get_read_tasks(
434434
if parallelism > len(list(plan_files)):
435435
parallelism = len(list(plan_files))
436436
logger.warning(
437-
f"Reducing the parallelism to {parallelism}, as that is the"
438-
"number of files"
437+
f"Reducing the parallelism to {parallelism}, as that is the number of files"
439438
)
440439

441440
# Get required properties for reading tasks - table IO, table metadata,

0 commit comments

Comments
 (0)