Fix not taking lock

This commit is contained in:
mcrakhman 2022-12-12 17:30:21 +01:00 committed by Mikhail Iudin
parent f8509bc85a
commit d8461fb856
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

View File

@ -129,7 +129,9 @@ func (d *diffSyncer) pingTreesInCache(ctx context.Context, trees []string) {
// it may be already there (i.e. loaded)
// and build func will not be called, thus we won't sync the tree
// therefore we just do it manually
syncTree.Lock()
syncTree.Ping()
syncTree.Unlock()
}
}