runner-runtime 1.0.75 → 1.0.76
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 +12 -10
- package/package.json +1 -1
package/events/api.js
CHANGED
|
@@ -2421,16 +2421,18 @@ module.exports = (event, option, callback, eventRuntimeData, eventResultList) =>
|
|
|
2421
2421
|
},
|
|
2422
2422
|
|
|
2423
2423
|
responseData(cursor, data) {
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2424
|
+
if (!_.includes(['get_parsed_request'], scene)) {
|
|
2425
|
+
callback({
|
|
2426
|
+
action: "sse",
|
|
2427
|
+
data: {
|
|
2428
|
+
stream: data,
|
|
2429
|
+
size: _.size(data),
|
|
2430
|
+
time: Date.now()
|
|
2431
|
+
},
|
|
2432
|
+
msg: "success",
|
|
2433
|
+
error: null,
|
|
2434
|
+
})
|
|
2435
|
+
}
|
|
2434
2436
|
},
|
|
2435
2437
|
|
|
2436
2438
|
done(err, summary) {
|