Skip to content

Commit c10ab8c

Browse files
committed
Merge branch 'release.24.10' into release.24.12
2 parents 52a5c4f + 2b7e18f commit c10ab8c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

api/utils/requestProcessor.js

100755100644
+3-2
Original file line numberDiff line numberDiff line change
@@ -3208,7 +3208,7 @@ const processBulkRequest = (i, requests, params) => {
32083208
const appKey = params.qstring.app_key;
32093209
if (i === requests.length) {
32103210
common.unblockResponses(params);
3211-
if (params.qstring.safe_api_response || plugins.getConfig("api", params.app && params.app.plugins, true).safe && !params.res.finished) {
3211+
if ((params.qstring.safe_api_response || plugins.getConfig("api", params.app && params.app.plugins, true).safe) && !params.res.finished) {
32123212
common.returnMessage(params, 200, 'Success');
32133213
}
32143214
return;
@@ -3235,7 +3235,8 @@ const processBulkRequest = (i, requests, params) => {
32353235
'req': params.req,
32363236
'promises': [],
32373237
'bulk': true,
3238-
'populator': params.qstring.populator
3238+
'populator': params.qstring.populator,
3239+
'blockResponses': true
32393240
};
32403241

32413242
tmpParams.qstring.app_key = (requests[i].app_key || appKey) + "";

0 commit comments

Comments
 (0)