runner-runtime 1.0.56 → 1.0.57
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/events/api.js +5 -2
- package/package.json +1 -1
package/events/api.js
CHANGED
|
@@ -671,6 +671,8 @@ const convert2PostmanOptions = (request, option, variables) => {
|
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
const options = {
|
|
674
|
+
abortOnFailure: false,
|
|
675
|
+
abortOnError: false,
|
|
674
676
|
timeout: {
|
|
675
677
|
request: requestTimeout,
|
|
676
678
|
script: 0,
|
|
@@ -2215,7 +2217,7 @@ module.exports = (event, option, callback, eventRuntimeData, eventResultList) =>
|
|
|
2215
2217
|
})
|
|
2216
2218
|
}
|
|
2217
2219
|
}
|
|
2218
|
-
|
|
2220
|
+
|
|
2219
2221
|
const requestOptions = convert2EchoRequest(request, requestJson, postmanJSON, history);
|
|
2220
2222
|
_.set(eventRuntimeData, [event?.event_id, "request"], requestOptions);
|
|
2221
2223
|
|
|
@@ -2348,7 +2350,8 @@ console.log(String(request?.url),111111)
|
|
|
2348
2350
|
callback({
|
|
2349
2351
|
action: 'request',
|
|
2350
2352
|
data: _.assign(finalRequestResult, {
|
|
2351
|
-
type: 'request'
|
|
2353
|
+
// type: 'request'
|
|
2354
|
+
type: event?.type
|
|
2352
2355
|
})
|
|
2353
2356
|
})
|
|
2354
2357
|
}
|