You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@wilbaker noted in #122 that I had changed the parallel test to git rev-list --objects HEAD^{tree} and should not have. This makes the test do nothing of value: we already loaded all blobs at HEAD due to the non-sparse clone. (If we made the test do a sparse clone, then that would be interesting.)
However, without that change we get test failures in ParallelDownloadsInSharedCache().
After investigating, I think we have a different race condition that we didn't see before.
The text was updated successfully, but these errors were encountered:
…gvfs-helper
Resolves#156.
See microsoft/git#205 for the Git code change. One race condition still existed: who creates the loose object _directory_ first? The simple change is to check if the directory exists after the mkdir fails.
@wilbaker noted in #122 that I had changed the parallel test to
git rev-list --objects HEAD^{tree}
and should not have. This makes the test do nothing of value: we already loaded all blobs at HEAD due to the non-sparse clone. (If we made the test do a sparse clone, then that would be interesting.)However, without that change we get test failures in
ParallelDownloadsInSharedCache()
.After investigating, I think we have a different race condition that we didn't see before.
The text was updated successfully, but these errors were encountered: