@hpcc-js/comms 2.91.1 → 2.91.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -648,8 +648,8 @@
648
648
  }
649
649
 
650
650
  var PKG_NAME = "@hpcc-js/comms";
651
- var PKG_VERSION = "2.91.1";
652
- var BUILD_VERSION = "2.105.3";
651
+ var PKG_VERSION = "2.91.2";
652
+ var BUILD_VERSION = "2.105.4";
653
653
 
654
654
  /******************************************************************************
655
655
  Copyright (c) Microsoft Corporation.
@@ -2391,7 +2391,7 @@
2391
2391
  var ComponentUsages = tcu.ComponentUsages.ComponentUsage.map(function (cu) {
2392
2392
  var MachineUsages = (cu.MachineUsages && cu.MachineUsages.MachineUsage ? cu.MachineUsages.MachineUsage : []).map(function (mu) {
2393
2393
  var DiskUsages = mu.DiskUsages && mu.DiskUsages.DiskUsage ? mu.DiskUsages.DiskUsage.map(function (du) {
2394
- return __assign(__assign({}, du), { Total: du.InUse + du.Available, PercentUsed: 100 - du.PercentAvailable });
2394
+ return __assign(__assign({}, du), { InUse: du.InUse * 1024, Total: (du.InUse + du.Available) * 1024, PercentUsed: 100 - du.PercentAvailable });
2395
2395
  }) : [];
2396
2396
  return {
2397
2397
  Name: mu.Name,