Skip to content

Commit 2b7e18f

Browse files
committed
Merge branch 'master' into release.24.10
2 parents a4b4caa + c3ad30a commit 2b7e18f

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
@@ -3200,7 +3200,7 @@ const processBulkRequest = (i, requests, params) => {
32003200
const appKey = params.qstring.app_key;
32013201
if (i === requests.length) {
32023202
common.unblockResponses(params);
3203-
if (params.qstring.safe_api_response || plugins.getConfig("api", params.app && params.app.plugins, true).safe && !params.res.finished) {
3203+
if ((params.qstring.safe_api_response || plugins.getConfig("api", params.app && params.app.plugins, true).safe) && !params.res.finished) {
32043204
common.returnMessage(params, 200, 'Success');
32053205
}
32063206
return;
@@ -3227,7 +3227,8 @@ const processBulkRequest = (i, requests, params) => {
32273227
'req': params.req,
32283228
'promises': [],
32293229
'bulk': true,
3230-
'populator': params.qstring.populator
3230+
'populator': params.qstring.populator,
3231+
'blockResponses': true
32313232
};
32323233

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

0 commit comments

Comments
 (0)