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
This issue came up from the November Blob Storage UX study in a post discussion with @JeffreyRichter
// EXAMPLE: List containers in a storage accountforpager:=service.ListContainers(nil); pager.NextPage(ctx); {
// BUG: This design should be improvedfor_, con:=rangepager.PageResponse().ListContainersSegmentResponse.ContainerItems {
fmt.Println(con.Name)
}
}
// EXAMPLE: List blobs in a containerforpager:=container.ListBlobsFlat(nil); pager.NextPage(ctx); {
// BUG: This design should be improvedfor_, b:=rangepager.PageResponse().ListBlobsFlatSegmentResponse.Segment.BlobItems {
fmt.Println(b.Name)
}
}
The text was updated successfully, but these errors were encountered:
This issue came up from the November Blob Storage UX study in a post discussion with @JeffreyRichter
The text was updated successfully, but these errors were encountered: