testaro 50.2.0 → 50.2.1
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/netWatch.js +1 -1
- package/package.json +1 -1
package/netWatch.js
CHANGED
|
@@ -179,9 +179,9 @@ exports.netWatch = async (isForever, intervalInSeconds, isCertTolerant = true) =
|
|
|
179
179
|
// Replace the placeholder with the value of the environment variable it names.
|
|
180
180
|
reportDest = `${sendReportTo.replace(/\[([^]]+\])/, process.env[$1])}`;
|
|
181
181
|
}
|
|
182
|
+
const reportLogStart = `Did job ${id}, sent report, and got `;
|
|
182
183
|
// Send the report there.
|
|
183
184
|
reportClient.request(reportDest, {method: 'POST'}, repResponse => {
|
|
184
|
-
const reportLogStart = `Did job ${id}, sent report, and got `;
|
|
185
185
|
const chunks = [];
|
|
186
186
|
repResponse
|
|
187
187
|
// If the response to the report threw an error:
|