@ikonintegration/ikapi 3.1.1 → 3.1.4
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/package.json
CHANGED
package/src/Database/DDB/IKDB.js
CHANGED
|
@@ -50,7 +50,7 @@ export default class IKDB_DDB extends IKDB {
|
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
getTrackerStats() {
|
|
53
|
-
if (!(this.stats.readUnits > 0 || this.
|
|
53
|
+
if (!(this.stats.readUnits > 0 || this.stats.writeUnits > 0)) return null;
|
|
54
54
|
return { tableName: this.tableName, ...this.stats };
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import RTClient from '@ikonintegration/mod-resources-tracker-client';
|
|
2
2
|
//
|
|
3
3
|
import Utils from "../API/IKUtils";
|
|
4
4
|
//
|
|
5
|
-
const fs =
|
|
5
|
+
const fs = require('fs');
|
|
6
6
|
//
|
|
7
7
|
export default class IKExecutionTracker {
|
|
8
8
|
constructor(config, context, db) {
|