mirror of
https://github.com/minio/minio.git
synced 2025-04-03 11:20:30 -04:00
fix: Use correct replication status in replication healing (#12711)
In case of replication healing, we always store completed status in the object metadata, which is wrong because replication could fail in the further retries.
This commit is contained in:
parent
a4b8928660
commit
b8f95fb3d4
@ -839,7 +839,7 @@ func replicateObject(ctx context.Context, ri ReplicateObjectInfo, objectAPI Obje
|
|||||||
for k, v := range objInfo.UserDefined {
|
for k, v := range objInfo.UserDefined {
|
||||||
popts.UserDefined[k] = v
|
popts.UserDefined[k] = v
|
||||||
}
|
}
|
||||||
popts.UserDefined[xhttp.AmzBucketReplicationStatus] = replication.Completed.String()
|
popts.UserDefined[xhttp.AmzBucketReplicationStatus] = replicationStatus.String()
|
||||||
if objInfo.UserTags != "" {
|
if objInfo.UserTags != "" {
|
||||||
popts.UserDefined[xhttp.AmzObjectTagging] = objInfo.UserTags
|
popts.UserDefined[xhttp.AmzObjectTagging] = objInfo.UserTags
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user