Skip to content

Commit 929b27a

Browse files
authored
Revert "Rubicon Bid Adapter: updated transactionId to auctionId for OpenRTB (#6298)" (#6314)
This reverts commit f672209.
1 parent 7bc2561 commit 929b27a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/rubiconBidAdapter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export const spec = {
154154
test: config.getConfig('debug') ? 1 : 0,
155155
cur: ['USD'],
156156
source: {
157-
tid: bidRequest.auctionId
157+
tid: bidRequest.transactionId
158158
},
159159
tmax: bidderRequest.timeout,
160160
imp: [{
@@ -425,7 +425,7 @@ export const spec = {
425425
'rp_floor': (params.floor = parseFloat(params.floor)) >= 0.01 ? params.floor : undefined,
426426
'rp_secure': '1',
427427
'tk_flint': `${rubiConf.int_type || DEFAULT_INTEGRATION}_v$prebid.version$`,
428-
'x_source.tid': bidRequest.auctionId,
428+
'x_source.tid': bidRequest.transactionId,
429429
'x_source.pchain': params.pchain,
430430
'p_screen_res': _getScreenResolution(),
431431
'tk_user_key': params.userId,

test/spec/modules/rubiconBidAdapter_spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ describe('the rubicon adapter', function () {
415415
'rp_secure': /[01]/,
416416
'rand': '0.1',
417417
'tk_flint': INTEGRATION,
418-
'x_source.tid': 'c45dd708-a418-42ec-b8a7-b70a6c6fab0a',
418+
'x_source.tid': 'd45dd707-a418-42ec-b8a7-b70a6c6fab0b',
419419
'x_source.pchain': 'GAM:11111-reseller1:22222',
420420
'p_screen_res': /\d+x\d+/,
421421
'tk_user_key': '12346',
@@ -572,7 +572,7 @@ describe('the rubicon adapter', function () {
572572
'rp_secure': /[01]/,
573573
'rand': '0.1',
574574
'tk_flint': INTEGRATION,
575-
'x_source.tid': 'c45dd708-a418-42ec-b8a7-b70a6c6fab0a',
575+
'x_source.tid': 'd45dd707-a418-42ec-b8a7-b70a6c6fab0b',
576576
'p_screen_res': /\d+x\d+/,
577577
'tk_user_key': '12346',
578578
'kw': 'a,b,c',
@@ -895,7 +895,7 @@ describe('the rubicon adapter', function () {
895895
'rp_secure': /[01]/,
896896
'rand': '0.1',
897897
'tk_flint': INTEGRATION,
898-
'x_source.tid': 'c45dd708-a418-42ec-b8a7-b70a6c6fab0a',
898+
'x_source.tid': 'd45dd707-a418-42ec-b8a7-b70a6c6fab0b',
899899
'p_screen_res': /\d+x\d+/,
900900
'tk_user_key': '12346',
901901
'kw': 'a,b,c',
@@ -2067,7 +2067,7 @@ describe('the rubicon adapter', function () {
20672067
'p_pos': 'atf',
20682068
'rp_secure': /[01]/,
20692069
'tk_flint': INTEGRATION,
2070-
'x_source.tid': 'c45dd708-a418-42ec-b8a7-b70a6c6fab0a',
2070+
'x_source.tid': 'd45dd707-a418-42ec-b8a7-b70a6c6fab0b',
20712071
'p_screen_res': /\d+x\d+/,
20722072
'tk_user_key': '12346',
20732073
'kw': 'a,b,c',

0 commit comments

Comments
 (0)