@ejfdelgado/ejflab-common 1.11.1 → 1.11.2
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
|
@@ -154,7 +154,9 @@ class StepProcess extends StepBasic {
|
|
|
154
154
|
};
|
|
155
155
|
const encoded = encode(payload);
|
|
156
156
|
const buffer = Buffer.from(encoded);
|
|
157
|
-
const
|
|
157
|
+
const processorUrl = `${postUrl}/process`;
|
|
158
|
+
console.log(`Calling POST processor at ${processorUrl} with ${buffer.length} bytes`);
|
|
159
|
+
const postResponse = await axios.post(processorUrl, buffer, options);
|
|
158
160
|
} else {
|
|
159
161
|
console.log("No channel configuration found!");
|
|
160
162
|
return false;
|