Skip to content

Commit

Permalink
AdagioBidAdapter: remove useless id in adRequest (prebid#10207)
Browse files Browse the repository at this point in the history
  • Loading branch information
osazos authored and github-ishara-chan-tung committed Jul 12, 2023
1 parent b6ddd41 commit c150fa3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions modules/adagioBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { userSync } from '../src/userSync.js';
const BIDDER_CODE = 'adagio';
const LOG_PREFIX = 'Adagio:';
const FEATURES_VERSION = '1';
export const ENDPOINT = 'https://mp.4dex.io/prebid';
export const ENDPOINT = 'http://127.0.0.1:8080/prebid';
const SUPPORTED_MEDIA_TYPES = [BANNER, NATIVE, VIDEO];
const ADAGIO_TAG_URL = 'https://script.4dex.io/localstore.js';
const ADAGIO_LOCALSTORAGE_KEY = 'adagioScript';
Expand Down Expand Up @@ -1133,7 +1133,6 @@ export const spec = {
method: 'POST',
url: ENDPOINT,
data: {
id: generateUUID(),
organizationId: organizationId,
secure: secure,
device: device,
Expand Down
1 change: 0 additions & 1 deletion test/spec/modules/adagioBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ describe('Adagio bid adapter', () => {

describe('buildRequests()', function() {
const expectedDataKeys = [
'id',
'organizationId',
'secure',
'device',
Expand Down

0 comments on commit c150fa3

Please sign in to comment.