Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
David Moles committed Jan 26, 2019
1 parent 1cfc76c commit 46b101c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/objects/swift_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func (obj *SwiftObject) Create(body io.Reader, length int64) error {

// TODO: allow object to include an expected MD5
var out io.WriteCloser
if length <= dloSizeThreshold { // 5 GiB
if length <= dloSizeThreshold { // 2 GiB
out, err = cnx.ObjectCreate(obj.container, obj.objectName, false, "", "", nil)
} else {
logger.Detailf(
Expand Down

0 comments on commit 46b101c

Please sign in to comment.