[ARVADOS] updated: 2.1.0-1166-ge3f75342a
Git user
git at public.arvados.org
Fri Aug 6 20:28:10 UTC 2021
Summary of changes:
tools/test-collection-create/test-collection-create.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via e3f75342a771d8c4a2216efd98e9ea60286e4280 (commit)
from 3fc0f9610deaf28c4ffcfce6cbf22a1a5fb0dace (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit e3f75342a771d8c4a2216efd98e9ea60286e4280
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Fri Aug 6 17:26:10 2021 -0300
17948: Fixes conditional.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/tools/test-collection-create/test-collection-create.py b/tools/test-collection-create/test-collection-create.py
index 12f9ebe02..2e969fd69 100644
--- a/tools/test-collection-create/test-collection-create.py
+++ b/tools/test-collection-create/test-collection-create.py
@@ -75,7 +75,7 @@ def create_substreams(depth, base_stream_name, max_filesize, data_loc, args, cur
substreams = create_substreams(depth-1, stream_name, max_filesize,
data_loc, args, current_size)
current_size += sum([len(x) for x in substreams])
- if current_size >= (128 * 1024 * 1024) == 0:
+ if current_size >= (128 * 1024 * 1024):
break
streams.extend(substreams)
return streams
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list