We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3a9343 commit 03b0c5eCopy full SHA for 03b0c5e
packages/service-core/src/storage/MongoBucketStorage.ts
@@ -347,9 +347,9 @@ export class MongoBucketStorage
347
.catch(ignoreNotExiting);
348
349
return {
350
- operations_size_bytes: operations_aggregate[0].storageStats.size,
351
- parameters_size_bytes: parameters_aggregate[0].storageStats.size,
352
- replication_size_bytes: replication_aggregate[0].storageStats.size
+ operations_size_bytes: Number(operations_aggregate[0].storageStats.size),
+ parameters_size_bytes: Number(parameters_aggregate[0].storageStats.size),
+ replication_size_bytes: Number(replication_aggregate[0].storageStats.size)
353
};
354
}
355
0 commit comments