erasure: Set fi.IsLatest when adding a new version (#13277)

This commit is contained in:
Krishnan Parthasarathi
2021-09-22 19:17:09 -07:00
committed by GitHub
parent 19ecdc75a8
commit 31d7cc2cd4
2 changed files with 8 additions and 0 deletions

View File

@@ -950,6 +950,9 @@ func (er erasureObjects) CompleteMultipartUpload(ctx context.Context, bucket str
}
}
// we are adding a new version to this object under the namespace lock, so this is the latest version.
fi.IsLatest = true
// Success, return object info.
return fi.ToObjectInfo(bucket, object), nil
}