Skip to content

Commit adfe8a7

Browse files
authored
AdagioBidAdapter: remove useless id in adRequest (#10207)
1 parent ecc0a37 commit adfe8a7

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

modules/adagioBidAdapter.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { userSync } from '../src/userSync.js';
3838
const BIDDER_CODE = 'adagio';
3939
const LOG_PREFIX = 'Adagio:';
4040
const FEATURES_VERSION = '1';
41-
export const ENDPOINT = 'https://mp.4dex.io/prebid';
41+
export const ENDPOINT = 'http://127.0.0.1:8080/prebid';
4242
const SUPPORTED_MEDIA_TYPES = [BANNER, NATIVE, VIDEO];
4343
const ADAGIO_TAG_URL = 'https://script.4dex.io/localstore.js';
4444
const ADAGIO_LOCALSTORAGE_KEY = 'adagioScript';
@@ -1133,7 +1133,6 @@ export const spec = {
11331133
method: 'POST',
11341134
url: ENDPOINT,
11351135
data: {
1136-
id: generateUUID(),
11371136
organizationId: organizationId,
11381137
secure: secure,
11391138
device: device,

test/spec/modules/adagioBidAdapter_spec.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ describe('Adagio bid adapter', () => {
256256

257257
describe('buildRequests()', function() {
258258
const expectedDataKeys = [
259-
'id',
260259
'organizationId',
261260
'secure',
262261
'device',

0 commit comments

Comments
 (0)