summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--obnamlib/fmt_ga/client.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/obnamlib/fmt_ga/client.py b/obnamlib/fmt_ga/client.py
index 635cc192..ccf9a49c 100644
--- a/obnamlib/fmt_ga/client.py
+++ b/obnamlib/fmt_ga/client.py
@@ -405,9 +405,12 @@ class GAClient(object):
dump('after getting file metadata for generation')
union = set()
+ n = 0
for filename in metadata:
+ n += 1
union = union.union(set(metadata.get_file_chunk_ids(filename)))
dump('after building union of sets')
+ dump('gen has {} files'.format(n))
result = list(union)
dump('after constructing result')