@flowcore/data-pump 0.2.0 → 0.2.1
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/CHANGELOG.md +7 -0
- package/esm/lib/data-pump.js +1 -1
- package/package.json +1 -1
- package/script/lib/data-pump.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.1](https://github.com/flowcore-io/data-pump/compare/v0.2.0...v0.2.1) (2025-02-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove usage of console ([29f747c](https://github.com/flowcore-io/data-pump/commit/29f747c8ec0f41ab39766df9ef25a8b6fcf6fc91))
|
|
9
|
+
|
|
3
10
|
## [0.2.0](https://github.com/flowcore-io/data-pump/compare/v0.1.11...v0.2.0) (2025-02-20)
|
|
4
11
|
|
|
5
12
|
|
package/esm/lib/data-pump.js
CHANGED
|
@@ -94,7 +94,7 @@ export class DataPump {
|
|
|
94
94
|
eventId: lastEventId,
|
|
95
95
|
eventBufferReached: false,
|
|
96
96
|
};
|
|
97
|
-
|
|
97
|
+
this.logger?.debug("stop at", `${this.stopAt.timeBucket} @ ${this.stopAt.eventId}`);
|
|
98
98
|
}
|
|
99
99
|
const newState = await this.options.stateManager.getState();
|
|
100
100
|
if (!newState) {
|
package/package.json
CHANGED
package/script/lib/data-pump.js
CHANGED
|
@@ -97,7 +97,7 @@ class DataPump {
|
|
|
97
97
|
eventId: lastEventId,
|
|
98
98
|
eventBufferReached: false,
|
|
99
99
|
};
|
|
100
|
-
|
|
100
|
+
this.logger?.debug("stop at", `${this.stopAt.timeBucket} @ ${this.stopAt.eventId}`);
|
|
101
101
|
}
|
|
102
102
|
const newState = await this.options.stateManager.getState();
|
|
103
103
|
if (!newState) {
|