bucket resync: persist reset id to bucket metadata (#16088)

This commit is contained in:
Poorna
2022-11-18 01:39:05 -08:00
committed by GitHub
parent 3661aaf8a1
commit 7198be5be9
2 changed files with 18 additions and 0 deletions

View File

@@ -221,6 +221,9 @@ func (sm *siteResyncMetrics) incBucket(o resyncOpts, bktStatus ResyncStatusType)
defer sm.Unlock()
st, ok := sm.resyncStatus[o.resyncID]
if ok {
if st.BucketStatuses == nil {
st.BucketStatuses = map[string]ResyncStatusType{}
}
switch bktStatus {
case ResyncCompleted:
st.BucketStatuses[o.bucket] = ResyncCompleted