@codefresh-io/eventbus 1.3.1 → 1.4.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/lib/Store.js +2 -1
- package/package.json +4 -4
- package/yarn-error.log +3182 -0
- package/yarn.lock +18 -11
package/lib/Store.js
CHANGED
|
@@ -21,6 +21,7 @@ class Store extends EventEmitter {
|
|
|
21
21
|
this.database = options.database;
|
|
22
22
|
this.user = options.user;
|
|
23
23
|
this.password = options.password;
|
|
24
|
+
this.port = options.port;
|
|
24
25
|
this.readyPromise = new Promise((resolve, reject) => {
|
|
25
26
|
this.readyDeferred = {
|
|
26
27
|
resolve: () => {
|
|
@@ -46,7 +47,7 @@ class Store extends EventEmitter {
|
|
|
46
47
|
database: this.database,
|
|
47
48
|
password: this.password,
|
|
48
49
|
host: this.host,
|
|
49
|
-
port:
|
|
50
|
+
port: this.port,
|
|
50
51
|
max: 10,
|
|
51
52
|
idleTimeoutMillis: 30000, // how long a client is allowed to remain idle before being closed
|
|
52
53
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codefresh-io/eventbus",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"amqplib": "^0.5.1",
|
|
21
21
|
"bluebird": "^3.5.0",
|
|
22
|
-
"cf-errors": "^0.1.
|
|
23
|
-
"debug": "
|
|
24
|
-
"lodash": "4.17.
|
|
22
|
+
"cf-errors": "^0.1.16",
|
|
23
|
+
"debug": "2.6.9",
|
|
24
|
+
"lodash": "^4.17.21",
|
|
25
25
|
"pg": "^7.0.2",
|
|
26
26
|
"pg-cursor": "^1.2.0",
|
|
27
27
|
"uuid": "^3.0.1"
|