elasticio-sailor-nodejs 2.7.1-dev2 → 2.7.1-dev3
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/sailor.js +2 -2
- package/package.json +1 -1
package/lib/sailor.js
CHANGED
|
@@ -29,7 +29,7 @@ class Sailor {
|
|
|
29
29
|
return OBJECT_ID_HEADER;
|
|
30
30
|
}
|
|
31
31
|
constructor(settings) {
|
|
32
|
-
log.info(JSON.stringify(settings, null, 2));
|
|
32
|
+
log.info(JSON.stringify(settings, null, 2), 'settings for container');
|
|
33
33
|
this.settings = settings;
|
|
34
34
|
this.messagesCount = 0;
|
|
35
35
|
this.amqpConnection = new amqp.Amqp(settings);
|
|
@@ -85,7 +85,7 @@ class Sailor {
|
|
|
85
85
|
apiClient,
|
|
86
86
|
componentReader
|
|
87
87
|
} = this;
|
|
88
|
-
|
|
88
|
+
log.info('Preparing component for execution', JSON.stringify(this.settings, null, 2));
|
|
89
89
|
const stepData = await apiClient.tasks.retrieveStep(flowId, stepId);
|
|
90
90
|
log.debug('Received step data');
|
|
91
91
|
assert(stepData);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elasticio-sailor-nodejs",
|
|
3
3
|
"description": "The official elastic.io library for bootstrapping and executing for Node.js connectors",
|
|
4
|
-
"version": "2.7.1-
|
|
4
|
+
"version": "2.7.1-dev3",
|
|
5
5
|
"main": "run.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"audit": "better-npm-audit audit --level high --production",
|