replication: Avoid blocking on mrf save (#16045)

This commit is contained in:
Poorna 2022-11-10 10:20:02 -08:00 committed by GitHub
parent 6eef9b4a23
commit 34d28dd79f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2726,6 +2726,7 @@ func (p *ReplicationPool) queueMRFSave(entry MRFReplicateEntry) {
case <-GlobalContext.Done(): case <-GlobalContext.Done():
return return
case p.mrfSaveCh <- entry: case p.mrfSaveCh <- entry:
default:
} }
} }