Skip to content

Commit

Permalink
ViantOrtb Bid Adapter : update endpoint url (#10801)
Browse files Browse the repository at this point in the history
* Edited viantOrtbBidAdapter bidder endpoint url.

* Update viantOrtbBidAdapter.js

* Update viantOrtbBidAdapter.js
  • Loading branch information
tkrishnaviant authored Dec 6, 2023
1 parent 9a65d49 commit 264efa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/viantOrtbBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {ortbConverter} from '../libraries/ortbConverter/converter.js'
import {deepAccess, getBidIdParameter, logError} from '../src/utils.js';

const BIDDER_CODE = 'viant';
const ENDPOINT = 'https://bidders-us-east-1.adelphic.net/d/rtb/v25/prebid/bidder_test'
const ENDPOINT = 'https://bidders-us-east-1.adelphic.net/d/rtb/v25/prebid/bidder'

const DEFAULT_BID_TTL = 300;
const DEFAULT_CURRENCY = 'USD';
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/viantOrtbBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ describe('viantOrtbBidAdapter', function () {
});
it('sends bid requests to the correct endpoint', function () {
const url = testBuildRequests(baseBannerBidRequests, baseBidderRequest)[0].url;
expect(url).to.equal('https://bidders-us-east-1.adelphic.net/d/rtb/v25/prebid/bidder_test');
expect(url).to.equal('https://bidders-us-east-1.adelphic.net/d/rtb/v25/prebid/bidder');
});

it('sends site', function () {
Expand Down

0 comments on commit 264efa7

Please sign in to comment.