You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Hard limit on number of pages to prevent infinite loops
311
+
// caused by the API always returning a pagination token
312
+
page:=0
313
+
maxPages:=10
314
+
forpaginate:=true; paginate&&page<maxPages; {
311
315
resp, err:=config.NewComputeClient(config.UserAgent).Images.List(publicImageProject).Filter("deprecated.replacement ne .*images.*").PageToken(token).Do()
312
316
iferr!=nil {
313
317
t.Fatalf("Can't list public images for project %q", publicImageProject)
0 commit comments