@onlineapps/conn-infra-mq 1.1.57 → 1.1.58

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/conn-infra-mq",
3
- "version": "1.1.57",
3
+ "version": "1.1.58",
4
4
  "description": "A promise-based, broker-agnostic client for sending and receiving messages via RabbitMQ",
5
5
  "main": "src/index.js",
6
6
  "repository": {
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "homepage": "https://github.com/onlineapps/connector-mq-client#readme",
44
44
  "dependencies": {
45
- "@onlineapps/mq-client-core": "1.0.67",
45
+ "@onlineapps/mq-client-core": "1.0.68",
46
46
  "ajv": "^8.11.0",
47
47
  "amqplib": "^0.10.3",
48
48
  "lodash.merge": "^4.6.2"
@@ -14,7 +14,7 @@ const RetryHandler = require('./layers/RetryHandler');
14
14
  *
15
15
  * @example <caption>Basic Usage</caption>
16
16
  * const mqClient = new ConnectorMQClient({
17
- * url: 'amqp://localhost:5672',
17
+ * url: 'amqp://127.0.0.1:5672',
18
18
  * serviceName: 'invoice-service'
19
19
  * });
20
20
  *
@@ -23,7 +23,7 @@ const RetryHandler = require('./layers/RetryHandler');
23
23
  *
24
24
  * @example <caption>With Workflow</caption>
25
25
  * const mqClient = new ConnectorMQClient({
26
- * url: 'amqp://localhost:5672',
26
+ * url: 'amqp://127.0.0.1:5672',
27
27
  * serviceName: 'invoice-service'
28
28
  * });
29
29
  */
@@ -40,7 +40,7 @@ class ConnectorMQClient extends BaseClient {
40
40
  *
41
41
  * @example
42
42
  * const mqClient = new ConnectorMQClient({
43
- * url: 'amqp://user:pass@localhost:5672',
43
+ * url: 'amqp://user:pass@127.0.0.1:5672',
44
44
  * serviceName: 'my-service',
45
45
  * prefetchCount: 20
46
46
  * });