@itentialopensource/adapter-kafkav2 0.20.0 → 0.22.0
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 +16 -0
- package/adapter.js +1 -1
- package/package.json +1 -1
- package/pronghorn.json +1 -3
- package/refs?service=git-upload-pack +0 -0
- package/utils/dbUtil.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.22.0 [01-22-2024]
|
|
3
|
+
|
|
4
|
+
* Minor/topic db dedupe
|
|
5
|
+
|
|
6
|
+
See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!16
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 0.21.0 [01-22-2024]
|
|
11
|
+
|
|
12
|
+
* Minor/topic db dedupe
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!16
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.20.0 [01-22-2024]
|
|
3
19
|
|
|
4
20
|
* Minor/topic db dedupe
|
package/adapter.js
CHANGED
package/package.json
CHANGED
package/pronghorn.json
CHANGED
|
Binary file
|
package/utils/dbUtil.js
CHANGED
|
@@ -745,7 +745,7 @@ class DBUtil {
|
|
|
745
745
|
if (useCallback) return callback(this.alive, mongoClient);
|
|
746
746
|
return { isAlive: this.alive, mongoClient };
|
|
747
747
|
} catch (err) {
|
|
748
|
-
log.
|
|
748
|
+
log.debug(`${origin}: Error! Exiting... Must start MongoDB first ${err}`);
|
|
749
749
|
this.alive = false;
|
|
750
750
|
if (useCallback) return callback(this.alive, mongoClient);
|
|
751
751
|
return { isAlive: this.alive, mongoClient };
|