1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Add space pull with acls

This commit is contained in:
Mikhail Rakhmanov 2025-06-04 15:35:33 +02:00
parent 31d1deb0c8
commit 95ba16876a
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
8 changed files with 781 additions and 131 deletions

View file

@ -43,7 +43,7 @@ func (s *spaceStorageProvider) WaitSpaceStorage(ctx context.Context, id string)
}
dbPath := path.Join(s.rootPath, id)
if _, err := os.Stat(dbPath); err != nil {
return nil, err
return nil, spacestorage.ErrSpaceStorageMissing
}
db, err := anystore.Open(ctx, dbPath, nil)
if err != nil {