We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96faf64 commit 213efc4Copy full SHA for 213efc4
src/servicex_did_finder_lib/servicex_adaptor.py
@@ -68,7 +68,7 @@ def put_file_add(self, file_info):
68
self.logger.error(f'After {attempts} tries, failed to send ServiceX App a put_file '
69
f'message: {str(file_info)} - Ignoring error.')
70
71
- def put_file_add_bulk(self, file_list, chunk_length=30):
+ def put_file_add_bulk(self, file_list, chunk_length=300):
72
# we first chunk up file_list as it can be very large in
73
# case there are a lot of replicas and a lot of files.
74
chunks = [file_list[i:i + chunk_length] for i in range(0, len(file_list), chunk_length)]
0 commit comments