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 7c671fa commit 2adb210Copy full SHA for 2adb210
src/servicex_did_finder_lib/communication.py
@@ -51,7 +51,10 @@ def send_on(self, count):
51
if self._hold_till_end:
52
self._hold_till_end = False
53
files = sorted(self._file_cache, key=lambda x: x["paths"])
54
- self.send_bulk(files[:count])
+ if count == -1:
55
+ self.send_bulk(files)
56
+ else:
57
+ self.send_bulk(files[:count])
58
59
def send_bulk(self, file_list: List[Dict[str, Any]]):
60
"does a bulk put of files"
0 commit comments