1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-11 02:13:41 +09:00

GO-1306: Test limit

This commit is contained in:
Sergey 2023-04-25 18:17:59 +02:00 committed by Mikhail Iudin
parent b213e160df
commit bb8e1033d7
No known key found for this signature in database
GPG key ID: FAAAA8BAABDFF1C0

View file

@ -46,7 +46,9 @@ func (f *fileSync) SpaceStat(ctx context.Context, spaceId string) (ss SpaceStat,
FileCount: int(info.FilesCount),
CidsCount: int(info.CidsCount),
BytesUsage: int(info.UsageBytes),
BytesLimit: int(info.LimitBytes),
// TODO Remove after test
BytesLimit: 52_428_800,
// BytesLimit: int(info.LimitBytes),
}, nil
}