fix: site replication of bucket deletion sync (#352)

Bucket deletion timestamp was not being passed back
in GetBucketInfo, which is needed to decide on the bucket
creation/deletion
This commit is contained in:
Poorna
2025-01-29 11:42:55 -08:00
committed by Harshavardhana
parent 64a8f2e554
commit 4df7a3aa8f
4 changed files with 55 additions and 18 deletions

View File

@@ -393,6 +393,7 @@ func (client *remotePeerS3Client) GetBucketInfo(ctx context.Context, bucket stri
return BucketInfo{
Name: volInfo.Name,
Created: volInfo.Created,
Deleted: volInfo.Deleted,
}, nil
}