Skip to content

Commit 3282e2f

Browse files
committed
Disable whole directory transfers for JsonTransferAction
Set `JsonTransferAction.whole_directory_transfer_supported` to `False`, as the job files API is not capable of serving directories.
1 parent 337dde1 commit 3282e2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pulsar/client/action_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ class JsonTransferAction(BaseAction):
519519
external system that can stage files in and out of the compute environment.
520520
"""
521521
inject_url = True
522-
whole_directory_transfer_supported = True
522+
whole_directory_transfer_supported = False
523523
action_type = "json_transfer"
524524
staging = STAGING_ACTION_REMOTE
525525

0 commit comments

Comments
 (0)