Skip to content

Commit

Permalink
Proxistore Bid Adapter: migrate to new subdomain (#9537)
Browse files Browse the repository at this point in the history
* Migrate to new subdomain

* Upgrade domain in tests as well
  • Loading branch information
anthonyrichir authored Feb 14, 2023
1 parent 3a9d4ca commit e957693
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/proxistoreBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { registerBidder } from '../src/adapters/bidderFactory.js';

const BIDDER_CODE = 'proxistore';
const PROXISTORE_VENDOR_ID = 418;
const COOKIE_BASE_URL = 'https://abs.proxistore.com/v3/rtb/prebid/multi';
const COOKIE_BASE_URL = 'https://api.proxistore.com/v3/rtb/prebid/multi';
const COOKIE_LESS_URL =
'https://abs.cookieless-proxistore.com/v3/rtb/prebid/multi';
'https://api.cookieless-proxistore.com/v3/rtb/prebid/multi';

function _createServerRequest(bidRequests, bidderRequest) {
var sizeIds = [];
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/proxistoreBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ describe('ProxistoreBidAdapter', function () {
});
describe('buildRequests', function () {
const url = {
cookieBase: 'https://abs.proxistore.com/v3/rtb/prebid/multi',
cookieBase: 'https://api.proxistore.com/v3/rtb/prebid/multi',
cookieLess:
'https://abs.cookieless-proxistore.com/v3/rtb/prebid/multi',
'https://api.cookieless-proxistore.com/v3/rtb/prebid/multi',
};

let request = spec.buildRequests([bid], bidderRequest);
Expand Down

0 comments on commit e957693

Please sign in to comment.