@superhero/eventflow-hub 4.3.3 → 4.3.5

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.
Files changed (2) hide show
  1. package/index.js +4 -4
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -13,10 +13,10 @@ const sleep = (ms) => new Promise((accept) => setTimeout(accept, ms))
13
13
  export function locate(locator)
14
14
  {
15
15
  const
16
- certifications = locator.config.find('eventflow/certificates', {}),
17
- config = locator.config.find('eventflow/hub', { certifications }),
18
- db = locator.locate('@superhero/eventflow-db'),
19
- hub = new Hub(config, db)
16
+ certificates = locator.config.find('eventflow/certificates', {}),
17
+ config = locator.config.find('eventflow/hub', { certificates }),
18
+ db = locator.locate('@superhero/eventflow-db'),
19
+ hub = new Hub(config, db)
20
20
 
21
21
  return hub
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-hub",
3
- "version": "4.3.3",
3
+ "version": "4.3.5",
4
4
  "description": "Eventflow hub is the central server component in the eventflow ecosystem.",
5
5
  "keywords": [
6
6
  "eventflow",
@@ -16,8 +16,8 @@
16
16
  "dependencies": {
17
17
  "@superhero/id-name-generator": "^4.0.0",
18
18
  "@superhero/log": "^4.0.1",
19
- "@superhero/eventflow-certificates": "^4.3.3",
20
- "@superhero/eventflow-db": "^4.3.3",
19
+ "@superhero/eventflow-certificates": "^4.3.5",
20
+ "@superhero/eventflow-db": "^4.3.5",
21
21
  "@superhero/tcp-record-channel": "^4.2.2",
22
22
  "@superhero/deep": "^4.2.0"
23
23
  },