summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go')
-rw-r--r--vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go b/vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go
index d10407dbd..85b78dd45 100644
--- a/vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go
+++ b/vendor/github.com/minio/minio-go/examples/s3/putobject-streaming.go
@@ -1,7 +1,8 @@
// +build ignore
/*
- * Minio Go Library for Amazon S3 Compatible Cloud Storage (C) 2016 Minio, Inc.
+ * Minio Go Library for Amazon S3 Compatible Cloud Storage
+ * Copyright 2015-2017 Minio, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -45,7 +46,7 @@ func main() {
}
defer object.Close()
- n, err := s3Client.PutObjectStreaming("my-bucketname", "my-objectname", object)
+ n, err := s3Client.PutObject("my-bucketname", "my-objectname", object, -1, minio.PutObjectOptions{})
if err != nil {
log.Fatalln(err)
}