Skip to content

Commit eeaa7ff

Browse files
increasing the limit of returned images to fix config test (#281)
1 parent 8203c3a commit eeaa7ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

reconciletags/config_integrity_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def _get_digests(self, repo):
3535
subprocess.check_output(['gcloud', 'container',
3636
'images', 'list-tags',
3737
'--no-show-occurrences',
38-
'--format=json', repo]))
38+
'--format=json', '--limit=100',
39+
repo]))
3940
# grab the digest for each image and strip off the 'sha256:'
4041
# for matching purposes
4142
digests = [image['digest'].split(':')[1] for image in output]

0 commit comments

Comments
 (0)