mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-11 04:07:43 +02:00
UBERF-9095: Fix wrong size in datalake (#7800)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -107,7 +107,7 @@ export class DatalakeService implements StorageAdapter {
|
||||
_id: blob.name as Ref<Blob>,
|
||||
_class: core.class.Blob,
|
||||
etag: blob.etag,
|
||||
size: blob.size ?? 0,
|
||||
size: (typeof blob.size === 'string' ? parseInt(blob.size) : blob.size) ?? 0,
|
||||
provider: this.opt.name,
|
||||
space: core.space.Configuration,
|
||||
modifiedBy: core.account.ConfigUser,
|
||||
|
||||
Reference in New Issue
Block a user