update STS examples to use latest v7 APIs

This commit is contained in:
Harshavardhana
2020-10-24 11:16:59 -07:00
parent 00124c56d9
commit 4442382c16
2 changed files with 5 additions and 4 deletions

View File

@@ -221,13 +221,13 @@ func main() {
return
}
clnt, err := minio.NewWithOptions(u.Host, opts)
clnt, err := minio.New(u.Host, opts)
if err != nil {
log.Println(fmt.Errorf("Error while initializing Minio client, %s", err))
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
buckets, err := clnt.ListBuckets()
buckets, err := clnt.ListBuckets(r.Context())
if err != nil {
log.Println(fmt.Errorf("Error while listing buckets, %s", err))
http.Error(w, err.Error(), http.StatusBadRequest)