elasticio-sailor-nodejs 2.6.28-dev2 → 2.6.28-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.
Files changed (2) hide show
  1. package/lib/sailor.js +1 -0
  2. package/package.json +1 -1
package/lib/sailor.js CHANGED
@@ -367,6 +367,7 @@ class Sailor {
367
367
  if (settings.EMIT_LIGHTWEIGHT_MESSAGE) {
368
368
  logger.trace('Outgoing lightweight is enabled, going to check size.');
369
369
  const bodyBuf = Buffer.from(JSON.stringify(body), 'utf-8');
370
+ logger.info('bodyBuf type:', { type: typeof bodyBuf });
370
371
  const passthroughBufs = Object.keys(passthrough).map(stepId => ({
371
372
  stepId,
372
373
  body: Buffer.from(JSON.stringify(passthrough[stepId].body), 'utf-8'),
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.6.28-dev2",
4
+ "version": "2.6.28-dev3",
5
5
  "main": "run.js",
6
6
  "scripts": {
7
7
  "audit": "better-npm-audit audit --level high --production",