mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
Merge branch 'stable-any-sync' into GO-2482-full-sync-request-max-size
# Conflicts: # commonspace/objectsync/objectsync.go # commonspace/spaceutils_test.go # go.sum
This commit is contained in:
commit
b3d3b3ea92
80 changed files with 15552 additions and 1870 deletions
|
@ -114,7 +114,7 @@ func (s *spaceService) CreateSpace(ctx context.Context, payload SpaceCreatePaylo
|
|||
return
|
||||
}
|
||||
|
||||
return store.Id(), nil
|
||||
return store.Id(), store.Close(ctx)
|
||||
}
|
||||
|
||||
func (s *spaceService) DeriveId(ctx context.Context, payload SpaceDerivePayload) (id string, err error) {
|
||||
|
@ -139,7 +139,7 @@ func (s *spaceService) DeriveSpace(ctx context.Context, payload SpaceDerivePaylo
|
|||
return
|
||||
}
|
||||
|
||||
return store.Id(), nil
|
||||
return store.Id(), store.Close(ctx)
|
||||
}
|
||||
|
||||
func (s *spaceService) NewSpace(ctx context.Context, id string, deps Deps) (Space, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue