Skip to content

Commit

Permalink
Timeout RTD Issue Fix (#12274)
Browse files Browse the repository at this point in the history
Co-authored-by: Komal Kumari <[email protected]>
  • Loading branch information
pm-komal-kumari and Komal Kumari committed Sep 30, 2024
1 parent bdab819 commit 0b882c2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions modules/rtdModule/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,8 @@ export const setBidRequestsData = timedAuctionHook('rtd', function setBidRequest
relevantSubModules.forEach(sm => {
const fpdGuard = guardOrtb2Fragments(reqBidsConfigObj.ortb2Fragments || {}, activityParams(MODULE_TYPE_RTD, sm.name));
verifiers.push(fpdGuard.verify);
sm.getBidRequestData({
...reqBidsConfigObj,
ortb2Fragments: fpdGuard.obj
}, onGetBidRequestDataCallback.bind(sm), sm.config, _userConsent)
reqBidsConfigObj.ortb2Fragments = fpdGuard.obj;
sm.getBidRequestData(reqBidsConfigObj, onGetBidRequestDataCallback.bind(sm), sm.config, _userConsent)
});

function onGetBidRequestDataCallback() {
Expand Down

0 comments on commit 0b882c2

Please sign in to comment.